gen methods

This commit is contained in:
2026-07-27 22:07:23 +07:00
parent 73c55afb4c
commit f72502f076
6 changed files with 1914 additions and 244 deletions
+24
View File
@@ -538,3 +538,27 @@ func (s *server) UpdateGame(ctx context.Context, req *proto.UpdateGameReq) (*pro
return &proto.UpdateGameRsp{}, nil
}
func (s *server) AddTeam(ctx context.Context, req *proto.AddTeamReq) (*proto.AddTeamRsp, error) {
panic("unimplemented")
}
func (s *server) UpdateTeam(ctx context.Context, req *proto.UpdateTeamReq) (*proto.UpdateTeamRsp, error) {
panic("unimplemented")
}
func (s *server) DeleteTeam(ctx context.Context, req *proto.DeleteTeamReq) (*proto.DeleteTeamRsp, error) {
panic("unimplemented")
}
func (s *server) GiveTeamApplications(ctx context.Context, req *proto.GiveTeamApplicationsReq) (*proto.GiveTeamApplicationsRsp, error) {
panic("unimplemented")
}
func (s *server) GetTeamActions(ctx context.Context, req *proto.GetTeamActionsReq) (*proto.GetTeamActionsRsp, error) {
panic("unimplemented")
}
func (s *server) AddTeamAction(ctx context.Context, req *proto.AddTeamActionReq) (*proto.AddTeamActionRsp, error) {
panic("unimplemented")
}