create-mantiq 0.5.13 → 0.5.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ServiceProvider } from '@mantiq/core'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Application Service Provider
|
|
5
|
+
*
|
|
6
|
+
* Register application-level bindings and run bootstrap logic here.
|
|
7
|
+
* This provider is auto-discovered from app/Providers/.
|
|
8
|
+
*/
|
|
9
|
+
export class AppServiceProvider extends ServiceProvider {
|
|
10
|
+
/**
|
|
11
|
+
* Register bindings into the container.
|
|
12
|
+
* Called before any provider's boot() method.
|
|
13
|
+
*/
|
|
14
|
+
override register(): void {
|
|
15
|
+
//
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Bootstrap application services.
|
|
20
|
+
* Called after all providers have been registered.
|
|
21
|
+
*/
|
|
22
|
+
override async boot(): Promise<void> {
|
|
23
|
+
//
|
|
24
|
+
}
|
|
25
|
+
}
|
|
File without changes
|