add addAction method

This commit is contained in:
2025-05-17 02:32:42 +07:00
parent 6177a05eac
commit 282e1b3aea
6 changed files with 660 additions and 50 deletions
+8
View File
@@ -27,3 +27,11 @@ func (s *Server) AddTeams(context.Context, *proto.AddTeamsReq) (*proto.AddTeamsR
func (s *Server) GetTeams(context.Context, *proto.GetTeamsReq) (*proto.GetTeamsRsp, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetTeams not implemented")
}
func (s *Server) DeleteTeams(context.Context, *proto.DeleteTeamsReq) (*proto.DeleteTeamsRsp, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteTeams not implemented")
}
func (s *Server) AddAction(context.Context, *proto.AddActionReq) (*proto.AddActionRsp, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddAction not implemented")
}