From de38835518aea4193c8789da7548d9a409e8eb10 Mon Sep 17 00:00:00 2001 From: Noel De Martin Date: Tue, 15 Dec 2020 09:44:17 +0100 Subject: [PATCH] MOBILE-3320 core: Implement shared module --- src/core/shared.module.ts | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/core/shared.module.ts diff --git a/src/core/shared.module.ts b/src/core/shared.module.ts new file mode 100644 index 000000000..5f7987b34 --- /dev/null +++ b/src/core/shared.module.ts @@ -0,0 +1,27 @@ +// (C) Copyright 2015 Moodle Pty Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +import { NgModule } from '@angular/core'; +import { CoreComponentsModule } from '@components/components.module'; +import { CoreDirectivesModule } from '@directives/directives.module'; +import { CorePipesModule } from '@pipes/pipes.module'; + +@NgModule({ + imports: [ + CoreComponentsModule, + CoreDirectivesModule, + CorePipesModule, + ], +}) +export class CoreSharedModule {}