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

9
proto/services.proto Normal file
View File

@@ -0,0 +1,9 @@
syntax = "proto3";
package chat;
import "messages.proto";
service Chat {
rpc sendMsg(stream chatMsg) returns (stream chatMsg) {}
}