@metacall/faas
Version:
Reimplementation of MetaCall FaaS platform written in TypeScript.
12 lines (11 loc) • 322 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Applications = exports.Application = void 0;
class Application {
kill() {
var _a;
(_a = this.proc) === null || _a === void 0 ? void 0 : _a.kill();
}
}
exports.Application = Application;
exports.Applications = {};