package v1 import ( "context" "github.com/gogf/gf/v2/errors/gcode" "github.com/gogf/gf/v2/errors/gerror" "aiChat/api/v1/aiChat" ) func (c *ControllerAiChat) ChatHistory(ctx context.Context, req *aiChat.ChatHistoryReq) (res *aiChat.ChatHistoryRes, err error) { return nil, gerror.NewCode(gcode.CodeNotImplemented) }