Update shoutcut.js

This commit is contained in:
Namhyeon Go 2022-11-06 19:00:42 +09:00 committed by GitHub
parent 220fe2c484
commit c86c268a9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
var SHELL = require("lib/shell"); var SHELL = require("lib/shell");
var SYS = require("lib/system"); var SYS = require("lib/system");
exports.main = function(args) { function main(args) {
if (args.length < 1) { if (args.length < 1) {
console.error("arguments could not be empty") console.error("arguments could not be empty")
return; return;
@ -24,3 +24,5 @@ exports.main = function(args) {
console.error("onShoutcut not defined"); console.error("onShoutcut not defined");
} }
}; };
exports.main = main;