blob: fcff1d58e0db3ec36acbf46d9affb3a63ee6427a [file] [log] [blame]
Skip Wonnell2c977e22018-03-01 08:30:15 -06001/*
2============LICENSE_START==========================================
3===================================================================
4Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
Arundathi Patil465d29e2018-07-18 15:41:05 +05305
6Copyright (C) 2018 IBM Intellectual Property. All rights reserved.
Skip Wonnell2c977e22018-03-01 08:30:15 -06007===================================================================
Sandeep J77ebde82018-07-20 15:56:31 +05308Copyright (C) 2018 IBM.
9===================================================================
Skip Wonnell2c977e22018-03-01 08:30:15 -060010Unless otherwise specified, all software contained herein is licensed
11under the Apache License, Version 2.0 (the License);
12you may not use this software except in compliance with the License.
13You may obtain a copy of the License at
14
15 http://www.apache.org/licenses/LICENSE-2.0
16
17Unless required by applicable law or agreed to in writing, software
18distributed under the License is distributed on an "AS IS" BASIS,
19WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20See the License for the specific language governing permissions and
21limitations under the License.
Skip Wonnell2c977e22018-03-01 08:30:15 -060022============LICENSE_END============================================
23*/
24
Arundathi Patil465d29e2018-07-18 15:41:05 +053025import { BrowserModule } from '@angular/platform-browser';
26import { NgModule } from '@angular/core';
27import { FormsModule } from '@angular/forms';
28import { SimpleNotificationsModule } from 'angular2-notifications';
29import { BootstrapModalModule } from 'ng2-bootstrap-modal';
30import { HomeModule } from './home/home.module';
31import { AppComponent } from './app.component';
32import { AppRoutingModule } from './app.routing';
33import { SharedModule } from './shared/shared.module';
34import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
35import { HashLocationStrategy, LocationStrategy } from '@angular/common';
36import { NoopAnimationsModule } from '@angular/platform-browser/animations';
37import { RouterModule } from '@angular/router';
38import { TestComponent } from './test/test.component';
39import { AboutUsComponent } from './about-us/aboutus.component';
40import { NgProgressModule } from 'ngx-progressbar';
41import { LoginGuardService } from './vnfs/LoginGuardService/Login-guard-service';
42import { ConfirmComponent } from './shared/confirmModal/confirm.component';
Sandeep J77ebde82018-07-20 15:56:31 +053043import { NgxSpinnerModule } from 'ngx-spinner';
Skip Wonnell2c977e22018-03-01 08:30:15 -060044
45@NgModule({
Arundathi Patil465d29e2018-07-18 15:41:05 +053046 declarations: [AppComponent, TestComponent, AboutUsComponent, ConfirmComponent],
Skip Wonnell2c977e22018-03-01 08:30:15 -060047 imports: [BrowserModule, FormsModule, HomeModule, SharedModule.forRoot(),
Sandeep J77ebde82018-07-20 15:56:31 +053048 NgbModule.forRoot(), NoopAnimationsModule, AppRoutingModule, SimpleNotificationsModule, NgProgressModule, BootstrapModalModule, NgxSpinnerModule],
Skip Wonnell2c977e22018-03-01 08:30:15 -060049 exports: [RouterModule],
Arundathi Patil465d29e2018-07-18 15:41:05 +053050 providers: [{ provide: LocationStrategy, useClass: HashLocationStrategy }, LoginGuardService],
51 entryComponents: [ConfirmComponent],
Skip Wonnell2c977e22018-03-01 08:30:15 -060052
53 bootstrap: [AppComponent]
54})
55
56export class AppModule {
Mohamed Asgar Samiulla(ma926a)d7dffc22018-04-02 19:00:49 +053057}