Start work on protobuf files and code generation

This commit is contained in:
2026-01-31 21:13:45 +01:00
parent b859a7903c
commit e63ee7103b
4 changed files with 68 additions and 0 deletions

8
proto/messages.proto Normal file
View File

@@ -0,0 +1,8 @@
syntax = "proto3";
package chat;
message chatMsg {
string userid = 1;
string message = 2;
}