aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+about/about.module.ts')
-rw-r--r--client/src/app/+about/about.module.ts28
1 files changed, 28 insertions, 0 deletions
diff --git a/client/src/app/+about/about.module.ts b/client/src/app/+about/about.module.ts
new file mode 100644
index 000000000..ff6e8ef41
--- /dev/null
+++ b/client/src/app/+about/about.module.ts
@@ -0,0 +1,28 @@
1import { NgModule } from '@angular/core'
2
3import { AboutRoutingModule } from './about-routing.module'
4import { AboutComponent } from './about.component'
5import { SharedModule } from '../shared'
6import { AboutInstanceComponent } from '@app/+about/about-instance/about-instance.component'
7import { AboutPeertubeComponent } from '@app/+about/about-peertube/about-peertube.component'
8
9@NgModule({
10 imports: [
11 AboutRoutingModule,
12 SharedModule
13 ],
14
15 declarations: [
16 AboutComponent,
17 AboutInstanceComponent,
18 AboutPeertubeComponent
19 ],
20
21 exports: [
22 AboutComponent
23 ],
24
25 providers: [
26 ]
27})
28export class AboutModule { }