websocket.go 411 B

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