v1_aiChat_usually_problem.go 333 B

1234567891011121314
  1. package v1
  2. import (
  3. "context"
  4. "github.com/gogf/gf/v2/errors/gcode"
  5. "github.com/gogf/gf/v2/errors/gerror"
  6. "aiChat/api/v1/aiChat"
  7. )
  8. func (c *ControllerAiChat) UsuallyProblem(ctx context.Context, req *aiChat.UsuallyProblemReq) (res *aiChat.UsuallyProblemRes, err error) {
  9. return nil, gerror.NewCode(gcode.CodeNotImplemented)
  10. }