feat: implement game creation with a new frontend form, backend API endpoint, and protobuf definition.

This commit is contained in:
2025-12-03 18:50:52 +01:00
parent 434eef5e1c
commit e192829fdd
4 changed files with 181 additions and 8 deletions
+1
View File
@@ -71,5 +71,6 @@ message AddOpinionRequest {
service MainService {
rpc GetGame(GameRequest) returns (Game);
rpc AddGame(Game) returns (Game);
rpc AddOpinion(AddOpinionRequest) returns (Person);
}