add getTeam method

This commit is contained in:
2025-05-17 01:35:40 +07:00
parent f710207782
commit 6177a05eac
6 changed files with 521 additions and 44 deletions
+4
View File
@@ -23,3 +23,7 @@ func (s *Server) Ping(_ context.Context, _ *proto.PingReq) (*proto.PingRsp, erro
func (s *Server) AddTeams(context.Context, *proto.AddTeamsReq) (*proto.AddTeamsRsp, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddTeams not implemented")
}
func (s *Server) GetTeams(context.Context, *proto.GetTeamsReq) (*proto.GetTeamsRsp, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetTeams not implemented")
}