12345678910111213141516 |
- package v1
- import (
- "context"
- "cris/api/v1/common"
- )
- type IV1Common interface {
- Chat(ctx context.Context, req *common.ChatReq) (res *common.ChatRes, err error)
- Login(ctx context.Context, req *common.LoginReq) (res *common.LoginRes, err error)
- }
|