UNPKG
nestjs-consul
Version:
latest (1.5.1)
1.5.1
1.5.0
1.4.0
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
NestJS consul config Module
github.com/AlariCode/nestjs-consul
AlariCode/nestjs-consul
nestjs-consul
/
e2e
/
mocks
/
test.module.ts
9 lines
(7 loc)
•
179 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import { Module } from
'@nestjs/common'
; import { TestService } from
'./test.service'
;
@Module
({ providers: [TestService], exports: [TestService] }) export
class
TestModule
{}