GuessWhoIAmS/docs/tsapi.md
2023-08-31 19:28:35 +08:00

391 B

TSRPC API 接口文档

通用说明

  • 所有请求方法均为 POST
  • 所有请求均需加入以下 Header :
    • Content-Type: application/json

目录


Send

路径

  • POST /Send

请求

interface ReqSend {
    content: string
}

响应

interface ResSend {
    time: /*datetime*/ string
}