/**
 * Created through mkmodule
 */

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

import { AppHelper }              from '@k-settings/app-helper'


const routes: Routes = [  
];


@NgModule({
  imports: [
    RouterModule.forChild(routes)
  ],
  exports: [
    RouterModule
  ]
})
export class BlockRouting { }

