2025-04-14 06:35:37 +00:00
|
|
|
# 模块通信接口及数据结构定义,仅针对非数据库部分
|
|
|
|
|
|
|
|
## web <-> core (接收请求方 <-> 发送请求方、接收响应方)
|
|
|
|
### request
|
|
|
|
```
|
|
|
|
protocal: https
|
|
|
|
method: post
|
|
|
|
target: https://m2pool.com/api/pool/checkAccount
|
2025-04-14 08:11:37 +00:00
|
|
|
params<json>:
|
2025-04-14 06:35:37 +00:00
|
|
|
{
|
|
|
|
"coin": <coin><string>,
|
|
|
|
"ma": <user><string>,
|
|
|
|
}
|
|
|
|
```
|
|
|
|
### response(success)
|
|
|
|
```
|
|
|
|
<result><bool>
|
|
|
|
```
|
|
|
|
### response(fail)
|
|
|
|
```
|
|
|
|
<error info>
|
|
|
|
```
|
|
|
|
|