youzanyun-devtool-worker
Version:
18 lines (17 loc) • 450 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const spring4js_nodejs_1 = require("spring4js-nodejs");
let CommandService = class CommandService {
constructor() {
}
async start() {
}
async process(param) {
return null;
}
};
CommandService = tslib_1.__decorate([
(0, spring4js_nodejs_1.Service)()
], CommandService);
exports.default = CommandService;