UNPKG
@localzet/xtls-sdk-nestjs
Version:
latest (1.0.1)
1.0.1
1.0.0
NestJS SDK for XRAY/AURA Core
github.com/localzet/xtls-sdk-nestjs
localzet/xtls-sdk-nestjs
@localzet/xtls-sdk-nestjs
/
src
/
decorators
/
core
/
inject-xtls.decorator.ts
7 lines
(5 loc)
•
181 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
{
Inject
}
from
'@nestjs/common'
;
import
{
MODULE_NAME
}
from
'../../common/constants'
;
export
function
InjectXtls
(
):
ParameterDecorator
{
return
Inject
(
MODULE_NAME
); }