UNPKG

actionhero

Version:

The reusable, scalable, and quick node.js API server for stateless and stateful applications

12 lines (11 loc) 262 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Api = void 0; class Api { constructor() { this.bootTime = new Date().getTime(); this.running = false; this.commands = {}; } } exports.Api = Api;