]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+home/home.module.ts
Improve remote runner config UX
[github/Chocobozzz/PeerTube.git] / client / src / app / +home / home.module.ts
CommitLineData
2539932e
C
1import { NgModule } from '@angular/core'
2import { SharedCustomMarkupModule } from '@app/shared/shared-custom-markup'
3import { SharedMainModule } from '@app/shared/shared-main'
4import { HomeRoutingModule } from './home-routing.module'
5import { HomeComponent } from './home.component'
6
7@NgModule({
8 imports: [
9 HomeRoutingModule,
10
11 SharedMainModule,
12 SharedCustomMarkupModule
13 ],
14
15 declarations: [
16 HomeComponent
17 ],
18
19 exports: [
20 HomeComponent
21 ],
22
23 providers: [ ]
24})
25export class HomeModule { }