-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.ts
38 lines (33 loc) · 983 Bytes
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { NgModule } from '@angular/core';
import { TcExchangeDbService } from './lib/tc_exchange_db.service';
import { TcGroupService } from './lib/tc_group.service';
import { TcIndicatorService } from './lib/tc_indicator.service';
import { TcOwnerService } from './lib/tc_owner.service';
import { TcSecurityLabelService } from './lib/tc_security_labels.service';
import { TcUtilityService } from './lib/tc_utility.service';
import { SpacesModule } from 'angular2-spaces/main';
@NgModule({
imports: [
SpacesModule,
],
providers: [
TcExchangeDbService,
TcGroupService,
TcIndicatorService,
TcOwnerService,
TcSecurityLabelService,
TcUtilityService,
]
})
class TcModule { }
export {
TcExchangeDbService,
TcGroupService,
TcIndicatorService,
TcOwnerService,
TcSecurityLabelService,
TcUtilityService,
TcModule,
};
export * from './lib/tc_resource_type';
export * from './lib/entities';