You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lib/src/auth/Authentication.ts

17 lines
370 B

import {Inject, Injectable} from '../di'
import {Unit} from '../lifecycle/Unit'
import {Logging} from '../service/Logging'
/**
* Unit class that bootstraps the authentication framework.
*/
@Injectable()
export class Authentication extends Unit {
@Inject()
protected readonly logging!: Logging
async up(): Promise<void> {
this.container()
}
}