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