Files
artdanj-shortener/providers/AppProvider.ts
2021-06-18 19:49:24 +02:00

21 lines
325 B
TypeScript

import { ApplicationContract } from '@ioc:Adonis/Core/Application'
export default class AppProvider {
public static needsApplication = true
constructor (protected app: ApplicationContract) {
}
public register () {
}
public async boot () {
}
public async ready () {
}
public async shutdown () {
}
}