1 Star 0 Fork 10

nf123/G49shouting

forked from zhaosongbing/G49shouting 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tscf.js 764 Bytes
一键复制 编辑 原始数据 按行查看 历史
2368693074 提交于 2021-03-09 12:14 . Add files via upload
'use strict';
// 阿里云函数计算
// see https://help.aliyun.com/document_detail/140283.html
// see https://github.com/alibaba/funcraft/blob/master/docs/specs/2018-04-03-zh-cn.md
// 腾讯云函数
// see https://github.com/serverless/serverless/blob/master/README_CN.md#how-to-install-a-service
exports.main_handler = (event, context, callback) => {
let argv = process.argv
argv[2] = process.env.cmd
argv[3] = '--config'
argv[4] = process.env.asm_code_dir + process.env.config
argv[5] = '--tasks'
argv[6] = process.env.tasks
console.log(argv.join(' '))
if (!process.env.tasks) {
callback(null, '必须单独指定任务');
} else {
require('./AutoSignMachine.js').run(argv)
callback(null, '触发任务执行成功');
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nifi/G49shouting.git
git@gitee.com:nifi/G49shouting.git
nifi
G49shouting
G49shouting
main

搜索帮助