summaryrefslogtreecommitdiffstats
path: root/providers/AppProvider.ts
diff options
context:
space:
mode:
Diffstat (limited to 'providers/AppProvider.ts')
-rw-r--r--providers/AppProvider.ts21
1 files changed, 0 insertions, 21 deletions
diff --git a/providers/AppProvider.ts b/providers/AppProvider.ts
deleted file mode 100644
index 4ee494c..0000000
--- a/providers/AppProvider.ts
+++ /dev/null
@@ -1,21 +0,0 @@
1import { ApplicationService } from '@adonisjs/core/types';
2
3export default class AppProvider {
4 constructor(protected app: ApplicationService) {}
5
6 public register() {
7 // Register your own bindings
8 }
9
10 public async boot() {
11 // IoC container is ready
12 }
13
14 public async ready() {
15 // App is ready
16 }
17
18 public async shutdown() {
19 // Cleanup, since app is going down
20 }
21}