add all methods

This commit is contained in:
2025-05-17 02:57:29 +07:00
parent 282e1b3aea
commit 0e399d92eb
6 changed files with 1672 additions and 122 deletions
+16
View File
@@ -28,6 +28,10 @@ func (s *Server) GetTeams(context.Context, *proto.GetTeamsReq) (*proto.GetTeamsR
return nil, status.Errorf(codes.Unimplemented, "method GetTeams not implemented")
}
func (s *Server) GetTeamsCSV(context.Context, *proto.GetTeamsCSVReq) (*proto.GetTeamsCSVRsp, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetTeamsCSV not implemented")
}
func (s *Server) DeleteTeams(context.Context, *proto.DeleteTeamsReq) (*proto.DeleteTeamsRsp, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteTeams not implemented")
}
@@ -35,3 +39,15 @@ func (s *Server) DeleteTeams(context.Context, *proto.DeleteTeamsReq) (*proto.Del
func (s *Server) AddAction(context.Context, *proto.AddActionReq) (*proto.AddActionRsp, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddAction not implemented")
}
func (s *Server) GameStart(context.Context, *proto.GameStartReq) (*proto.GameStartRsp, error) {
return nil, status.Errorf(codes.Unimplemented, "method GameStart not implemented")
}
func (s *Server) GameStop(context.Context, *proto.GameStopReq) (*proto.GameStopRsp, error) {
return nil, status.Errorf(codes.Unimplemented, "method GameStop not implemented")
}
func (s *Server) GiveApplications(context.Context, *proto.GiveApplicationsReq) (*proto.GiveApplicationsRsp, error) {
return nil, status.Errorf(codes.Unimplemented, "method GiveApplications not implemented")
}