allow limiting video-comments rss feeds to an account or video channel
[oweals/peertube.git] / client / src / app / +page-not-found / page-not-found.module.ts
1 import { CommonModule } from '@angular/common'
2 import { NgModule } from '@angular/core'
3 import { PageNotFoundRoutingModule } from './page-not-found-routing.module'
4 import { PageNotFoundComponent } from './page-not-found.component'
5
6 @NgModule({
7   imports: [
8     CommonModule,
9
10     PageNotFoundRoutingModule
11   ],
12
13   declarations: [
14     PageNotFoundComponent
15   ],
16
17   exports: [
18     PageNotFoundComponent
19   ],
20
21   providers: []
22 })
23 export class PageNotFoundModule { }