Start auth framework
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-06-05 12:02:36 -05:00
parent c264d45927
commit 91abcdf8ef
13 changed files with 656 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
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()
}
}