chat.go 396 B

123456789101112131415
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package chat
  5. import (
  6. "context"
  7. "cris/api/chat/v1"
  8. )
  9. type IChatV1 interface {
  10. Chat(ctx context.Context, req *v1.ChatReq) (res *v1.ChatRes, err error)
  11. }