ng2-adal-aot
Version:
Use Azure AD Library - ADAL in Angular 2
18 lines (15 loc) • 394 B
text/typescript
/**
* ng2-adal-aot - Use Azure AD Library - ADAL in Angular 2
* @version v0.3.4
* @link https://github.com/2020-vision/angular2-adal#readme
* @license MIT
*/
import { NgModule } from '@angular/core';
import { AdalService } from './../services/adal.service';
@NgModule({
imports: [],
exports: [],
declarations: [],
providers: [AdalService],
})
export class AdalModule { }