Commit 7dbae9db Harvey

no message

1 个父辈 1f53673b
此文件的差异被折叠, 点击展开。
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.sxjx_calc_pre_win = exports.sxjx_create_match_data = void 0;
const sxjx_1 = require("../../bl/sxjx");
async function sxjx_create_match_data() {
return (0, sxjx_1.create_match_data)();
}
exports.sxjx_create_match_data = sxjx_create_match_data;
async function sxjx_calc_pre_win() {
return (0, sxjx_1.calc_pre_win)();
}
exports.sxjx_calc_pre_win = sxjx_calc_pre_win;
//# sourceMappingURL=index.js.map
\ No newline at end of file
......@@ -2,6 +2,8 @@
Object.defineProperty(exports, "__esModule", { value: true });
const fs = require("fs");
const path = require('path');
//多线程情况下 需要重新初始化config配置
require('../../config/index');
const job_handlers = new Map();
/**
* 递归加载指定目录下所有 .js 文件
......
此文件的差异被折叠, 点击展开。
import { create_match_data, calc_pre_win } from '../../bl/sxjx'
export async function sxjx_create_match_data() {
return create_match_data();
}
export async function sxjx_calc_pre_win() {
return calc_pre_win();
}
......@@ -2,6 +2,9 @@
import * as fs from 'fs'
const path = require('path')
//多线程情况下 需要重新初始化config配置
require('../../config/index');
const job_handlers = new Map();
/**
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!