|
@@ -12,6 +12,7 @@ const czz = require('../model/czz')
|
|
|
var remote_config_db = require("../model/db/remote_config_db");
|
|
|
const account_mysql = require("../model/db/account_info_db")
|
|
|
var collect_coins_db = require("../model/db/collect_coins_db");
|
|
|
+var stat = require('../model/server_data_statistics')
|
|
|
|
|
|
* 获取代币价格
|
|
|
* @param {*} ctx
|
|
@@ -831,6 +832,10 @@ router.post('/withdrawV3Test', withdrawV3Test);
|
|
|
router.post('/getWithdrawStatus', getWithdrawStatus);
|
|
|
|
|
|
router.post('/getAllTokenWithdrawInfoLists', getAllTokenWithdrawInfoLists)
|
|
|
+router.get('/report2FeishuTable', async (ctx) => {
|
|
|
+ await stat.report2FeishuTable()
|
|
|
+ ctx.body = 'ok.'
|
|
|
+})
|
|
|
|
|
|
|
|
|
withdraw_task();
|