@flexiblepersistence/backnextapi
Version:
A simple API framework using Flexible Persistence
16 lines • 401 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// @ts-ignore
class RouterSingleton {
static getInstance() {
if (!this._instance) {
this._instance = new this();
}
return this._instance;
}
getController() {
return this.controller;
}
}
exports.default = RouterSingleton;
//# sourceMappingURL=routerSingleton.js.map