diff options
author | Brinda Santh Muthuramalingam <brindasanth@in.ibm.com> | 2019-11-26 15:31:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-26 15:31:39 +0000 |
commit | 32b4021333213679c6a77ca50c9bba07e47c5b9b (patch) | |
tree | 74c6fae30d18f7011c9c2c24609e2647f5183442 /cds-ui/client-frankfurt/src/app/app.module.ts | |
parent | adbbdf4f899833229f7244af91e4deb379a3a942 (diff) | |
parent | 6ee4d31800a68975294ef11156bea9a595b23adf (diff) |
Merge "add pacakges dashboard component to new cds ui"
Diffstat (limited to 'cds-ui/client-frankfurt/src/app/app.module.ts')
-rw-r--r-- | cds-ui/client-frankfurt/src/app/app.module.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cds-ui/client-frankfurt/src/app/app.module.ts b/cds-ui/client-frankfurt/src/app/app.module.ts index c52da5cb9..20b9b4d7b 100644 --- a/cds-ui/client-frankfurt/src/app/app.module.ts +++ b/cds-ui/client-frankfurt/src/app/app.module.ts @@ -30,6 +30,9 @@ import {NoopAnimationsModule} from '@angular/platform-browser/animations'; import {MatTabsModule} from '@angular/material/tabs'; import {ApiService} from './common/core/services/api.service'; import {HttpClientModule} from '@angular/common/http'; +import {PackagesModule} from './modules/feature-modules/packages/packages.module'; +import { SidebarModule } from 'ng-sidebar'; +import {SharedModulesModule} from './modules/shared-modules/shared-modules.module'; @NgModule({ declarations: [ @@ -43,6 +46,8 @@ import {HttpClientModule} from '@angular/common/http'; NoopAnimationsModule, MatTabsModule, HttpClientModule, + PackagesModule, + SharedModulesModule, ], providers: [ApiService], |