Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Husr
/
clip
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
clip
/
apps
/
backend
/
src
/
common
/
auth.controller.ts
Poki01
Require admin token for private access
3bbb98d
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
166 Bytes
import
{
Controller
,
Get
}
from
'@nestjs/common'
;
@Controller
(
'auth'
)
export
class
AuthController
{
@Get
(
'verify'
)
verify
(
) {
return
{
status
:
'ok'
};
}
}