11 lines
144 B
Protocol Buffer
11 lines
144 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package main;
|
|
|
|
option go_package = "../internal/netwrk";
|
|
|
|
message LobbyMessage {
|
|
string type = 1;
|
|
string content = 2;
|
|
}
|