mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 21:07:27 +00:00
22 lines
368 B
TypeScript
22 lines
368 B
TypeScript
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
|
|
}
|
|
}
|