]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
CommitLineData
693b1aba
C
1import { NgModule } from '@angular/core';
2
3import { AccountRoutingModule } from './account-routing.module';
4import { AccountComponent } from './account.component';
5import { AccountService } from './account.service';
6import { 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})
26export class AccountModule { }