btc-address

统一返回值格式

type JsonResult struct {
    Success bool   `json:"success"`
    Error   string `json:"error"`
    Data    any    `json:"data"`
}
  • 是否成功响应

  • 错误信息

  • 具体数据

Last updated