Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
KaliumPotas
/
Api_recommend
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b5f1761
Api_recommend
/
src
/
1
/
routes
/
system.py
kauabarros-24
AI and api
29b1b0f
11 months ago
raw
Copy download link
history
blame
Safe
178 Bytes
from
fastapi
import
APIRouter
router = APIRouter()
@router.get(
"/"
)
async
def
system
():
print
(
"System in running in port 8000"
)
return
{
"message"
:
"System is running!"
}