add teams operations

This commit is contained in:
2026-07-28 00:51:25 +07:00
parent 5a5b36e44d
commit f6934e9d5b
11 changed files with 199 additions and 35 deletions
+4 -2
View File
@@ -9,8 +9,10 @@ func mapTeam(
o *game_service.Team,
) *proto.Team {
return &proto.Team{
Id: int32(o.ID),
Name: o.Name,
Id: int32(o.ID),
Name: o.Name,
Status: o.Status,
Password: o.Password,
}
}