UNPKG

@hicoder/angular-cli

Version:

Angular UI componenets and service generator. It works with the mean-rest-express package to generate the end to end web application. The input to this generator is the Mongoose schema defined for the express application. mean-rest-express exposes the Res

14 lines (10 loc) 428 B
import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { <%-ModuleName%>Component } from './<%-moduleName%>.component'; import { <%-ModuleName%>CoreRoutes } from '../<%-moduleName%>-cust/<%-moduleName%>.conf'; @NgModule({ imports: [RouterModule.forChild(<%-ModuleName%>CoreRoutes)], exports: [RouterModule], providers: [ ], }) export class <%-ModuleName%>RoutingCoreModule { }