UNPKG

@adonisjs/auth

Version:

Official authentication provider for Adonis framework

12 lines (11 loc) 274 B
import app from "@adonisjs/core/services/app"; //#region services/auth.ts let auth; /** * Returns a singleton instance of the Auth manager class */ await app.booted(async () => { auth = await app.container.make("auth.manager"); }); //#endregion export { auth as default };