v1.go 490 B

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