LeagueStats/server-new/providers/AppProvider.ts

23 lines
368 B
TypeScript
Raw Normal View History

2020-10-04 11:37:05 +00:00
import { IocContract } from '@adonisjs/fold'
export default class AppProvider {
constructor (protected $container: IocContract) {
}
public register () {
// Register your own bindings
}
public boot () {
// IoC container is ready
}
public shutdown () {
// Cleanup, since app is going down
}
public ready () {
// App is ready
}
}