Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pbl6-cats
/
PBL6-informative-system
like
0
Sleeping
App
Files
Files
Community
fa2fb3b
PBL6-informative-system
/
backend
/
src
/
app.service.ts
Trần Viết Sơn
initialize backend
88f437e
3 months ago
raw
Copy download link
history
blame
Safe
142 Bytes
import
{
Injectable
}
from
'@nestjs/common'
;
@Injectable
()
export
class
AppService
{
getHello
():
string
{
return
'Hello World!'
;
}
}