|
import {NgModule} from '@angular/core';
|
|
import {RouterModule} from '@angular/router';
|
|
import {PluginsComponent} from "./plugins.component";
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([
|
|
{ path: '', component: PluginsComponent}
|
|
])
|
|
]
|
|
})
|
|
export class PluginsRoutingModule { }
|