wfw-ngx-adal-observable
Version:
Use Azure AD Library - ADAL in Angular 5
19 lines (16 loc) • 390 B
text/typescript
/**
* wfw-ngx-adal-observable - Use Azure AD Library - ADAL in Angular 5
* @version v2.0.4
* @link https://github.com/dvonhand-centric/wfw-ngx-adal
* @license MIT
*/
import { NgModule } from '@angular/core';
import { AdalService } from './../services/adal.service';
@NgModule({
imports: [],
exports: [],
declarations: [],
providers: [AdalService],
})
export class AdalModule {
}