mirror of
https://github.com/gnh1201/welsonjs.git
synced 2024-11-26 15:31:42 +00:00
10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
// grpcloader.js
|
|
var Py3 = require("lib/python3");
|
|
|
|
function main(args) {
|
|
var py = Py3.create("win32");
|
|
py.runScript("app/assets/py/apploader.py");
|
|
}
|
|
|
|
exports.main = main;
|