diff options
author | swapnalipode <sp00501638@techmahindra.com> | 2020-04-18 19:45:12 +0530 |
---|---|---|
committer | Swapnali Pode <sp00501638@techmahindra.com> | 2020-04-21 16:16:20 +0000 |
commit | b85c484da92c3b6721bb241376074fd9d7a712e2 (patch) | |
tree | d85aff1e31f31d73853ba528e82017530cd82cec /cds-ui/designer-client/src/app/app.module.ts | |
parent | 3c10444c1d9d84b4d7f38b223fd304450cb36eb6 (diff) |
Adding Resource dictionary
Adding resource-dictionary
Change-Id: Ib23b282e7293843ce94263e82b3f7cdb0fe36c5a
Issue-ID: CCSDK-2253
Signed-off-by: swapnalipode <sp00501638@techmahindra.com>
Diffstat (limited to 'cds-ui/designer-client/src/app/app.module.ts')
-rw-r--r-- | cds-ui/designer-client/src/app/app.module.ts | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cds-ui/designer-client/src/app/app.module.ts b/cds-ui/designer-client/src/app/app.module.ts index 9817edf70..d6e9b36df 100644 --- a/cds-ui/designer-client/src/app/app.module.ts +++ b/cds-ui/designer-client/src/app/app.module.ts @@ -1,4 +1,3 @@ - /* ============LICENSE_START========================================== =================================================================== @@ -31,9 +30,10 @@ 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 {SidebarModule} from 'ng-sidebar'; import {SharedModulesModule} from './modules/shared-modules/shared-modules.module'; -import { NgxFileDropModule } from 'ngx-file-drop'; +import {NgxFileDropModule} from 'ngx-file-drop'; +import {ResourceDictionaryModule} from './modules/feature-modules/resource-dictionary/resource-dictionary.module'; @NgModule({ declarations: [ @@ -50,6 +50,8 @@ import { NgxFileDropModule } from 'ngx-file-drop'; PackagesModule, SharedModulesModule, NgxFileDropModule, + ResourceDictionaryModule, + SidebarModule ], providers: [ApiService], |