123456789101112131415 |
- // =================================================================================
- // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
- // =================================================================================
- package websocket
- import (
- "context"
- "cris/api/websocket/v1"
- )
- type IWebsocketV1 interface {
- Chat(ctx context.Context, req *v1.ChatReq) (res *v1.ChatRes, err error)
- }
|