mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-06 14:20:42 +02:00
17 lines
325 B
JavaScript
17 lines
325 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
class AppProvider {
|
|
constructor(app) {
|
|
this.app = app;
|
|
}
|
|
register() {
|
|
}
|
|
async boot() {
|
|
}
|
|
async ready() {
|
|
}
|
|
async shutdown() {
|
|
}
|
|
}
|
|
exports.default = AppProvider;
|
|
//# sourceMappingURL=AppProvider.js.map
|