import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { NcApplicationIndexPage } from './nc-application-index.page';

/** 应用索引模块 */
@NgModule({
  declarations: [NcApplicationIndexPage],
  imports: [RouterModule.forChild([{ path: '', component: NcApplicationIndexPage }])]
})
export class NcApplicationIndexModule { }
