mirror of
https://github.com/ArthurDanjou/artdanj-shortener.git
synced 2026-01-22 17:51:31 +01:00
21 lines
325 B
TypeScript
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 () {
|
|
}
|
|
}
|