]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/account/account.module.ts
Server: assert remoteId and host pair is unique
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account.module.ts
1 import { NgModule } from '@angular/core';
2
3 import { AccountRoutingModule } from './account-routing.module';
4 import { AccountComponent } from './account.component';
5 import { AccountService } from './account.service';
6 import { SharedModule } from '../shared';
7
8 @NgModule({
9 imports: [
10 AccountRoutingModule,
11 SharedModule
12 ],
13
14 declarations: [
15 AccountComponent
16 ],
17
18 exports: [
19 AccountComponent
20 ],
21
22 providers: [
23 AccountService
24 ]
25 })
26 export class AccountModule { }