UNPKG
@randombenj/dbsync
Version:
beta (1.10.2-alpha.0)
latest (1.10.2-alpha.0)
unstable (1.10.2-alpha.41)
1.10.2-alpha.42
1.10.2-alpha.41
1.10.2-alpha.38
1.10.2-alpha.35
1.10.2-alpha.0
Display, search and copy LXD-images using a web interface.
github.com/Roche/lxdhub
Roche/lxdhub
@randombenj/dbsync
/
src
/
alias
/
alias.module.ts
20 lines
(18 loc)
•
411 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import
{ Module }
from
'@nestjs/common'
;
import
{ AliasService }
from
'./'
;
import
{ LXDModule }
from
'../lxd'
;
import
{ TypeOrmModule }
from
'@nestjs/typeorm'
;
import
{ Alias }
from
'@lxdhub/db'
;
@Module(
{ imports: [ LXDModule, TypeOrmModule.forFeature(
[Alias]
) ], providers: [ AliasService, ], exports: [ AliasService ] }
)
export
class
AliasModule
{ }