blob: 06a05c7cba10dd944077adcb0ce37f1beae8ebf2 [file] [log] [blame]
Sean Condona36f65c2019-05-20 08:21:41 +01001/*
2 * Copyright ${year}-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17import { NgModule } from '@angular/core';
Sean Condon13f42b72019-05-31 16:17:52 +010018import {CommonModule} from '@angular/common';
Sean Condona36f65c2019-05-20 08:21:41 +010019import { Gui2FwLibModule } from 'gui2-fw-lib';
Sean Condon13f42b72019-05-31 16:17:52 +010020import { ${appNameTitle}Component } from './${artifactId}/${artifactId}.component';
21import { ${appNameTitle}RoutingModule } from './${artifactId}-routing.module';
Sean Condona36f65c2019-05-20 08:21:41 +010022import { WelcomeComponent } from './welcome/welcome.component';
23
24@NgModule({
Sean Condon13f42b72019-05-31 16:17:52 +010025 declarations: [${appNameTitle}Component, WelcomeComponent],
Sean Condona36f65c2019-05-20 08:21:41 +010026 imports: [
Sean Condon13f42b72019-05-31 16:17:52 +010027 ${appNameTitle}RoutingModule,
28 Gui2FwLibModule,
29 CommonModule
Sean Condona36f65c2019-05-20 08:21:41 +010030 ],
Sean Condon13f42b72019-05-31 16:17:52 +010031 exports: [${appNameTitle}Component, WelcomeComponent]
Sean Condona36f65c2019-05-20 08:21:41 +010032})
Sean Condon13f42b72019-05-31 16:17:52 +010033export class ${appNameTitle}GuiLibModule { }