aiSearch_v1_problem_configuration.go 347 B

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