import { NgModule }             from '@angular/core'
import { RouterModule, Routes } from '@angular/router'

// Application loaders
import { Eager }  from './eager.app'
import { Lazy }   from './lazy.app'

const routes: Routes = [
  
  ...Eager,
  ...Lazy,

]

@NgModule({
  imports: [ RouterModule.forRoot(routes) ],
  exports: [ RouterModule ]
})

export class AppRoutingModule {}