]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+home/home-routing.module.ts
Support RTMPS
[github/Chocobozzz/PeerTube.git] / client / src / app / +home / home-routing.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { RouterModule, Routes } from '@angular/router'
3import { HomeComponent } from './home.component'
4
5const homeRoutes: Routes = [
6 {
7 path: '',
8 component: HomeComponent
9 }
10]
11
12@NgModule({
13 imports: [ RouterModule.forChild(homeRoutes) ],
14 exports: [ RouterModule ]
15})
16export class HomeRoutingModule {}