1 | "use strict";
|
2 |
|
3 |
|
4 |
|
5 |
|
6 | Object.defineProperty(exports, "__esModule", { value: true });
|
7 | exports.BootTags = exports.BootBindings = void 0;
|
8 | const core_1 = require("@loopback/core");
|
9 |
|
10 |
|
11 |
|
12 | var BootBindings;
|
13 | (function (BootBindings) {
|
14 | |
15 |
|
16 |
|
17 | BootBindings.BOOT_OPTIONS = core_1.BindingKey.create('boot.options');
|
18 | |
19 |
|
20 |
|
21 | BootBindings.PROJECT_ROOT = core_1.BindingKey.create('boot.project_root');
|
22 | |
23 |
|
24 |
|
25 | BootBindings.BOOTSTRAPPER_KEY = core_1.BindingKey.create('application.bootstrapper');
|
26 | |
27 |
|
28 |
|
29 | BootBindings.BOOTERS = 'booters';
|
30 | BootBindings.BOOTER_PREFIX = 'booters';
|
31 | })(BootBindings = exports.BootBindings || (exports.BootBindings = {}));
|
32 |
|
33 |
|
34 |
|
35 | var BootTags;
|
36 | (function (BootTags) {
|
37 | BootTags.BOOTER = 'booter';
|
38 | |
39 |
|
40 |
|
41 | BootTags.BOOTER_TAG = BootTags.BOOTER;
|
42 | })(BootTags = exports.BootTags || (exports.BootTags = {}));
|
43 |
|
\ | No newline at end of file |