Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
BG5
/
cptadmin
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
cptadmin
/
packages
/
backend
/
src
/
libs
/
jwt
/
jwt.module.ts
BG5
Upload 253 files
db242f8
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
178 Bytes
import
{
Module
}
from
'@nestjs/common'
;
import
{
JwtService
}
from
'./jwt.service'
;
@Module
({
providers
: [
JwtService
],
exports
: [
JwtService
],
})
export
class
JwtModule
{}