Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
saadrizvi09
/
wagerkit
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
wagerkit
/
backend
/
src
/
auth
/
jwt-auth.guard.ts
saadrizvi09
init
b2806e8
21 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
160 Bytes
import
{
Injectable
}
from
'@nestjs/common'
;
import
{
AuthGuard
}
from
'@nestjs/passport'
;
@Injectable
()
export
class
JwtAuthGuard
extends
AuthGuard
(
'jwt'
) {}