Spaces:
Sleeping
Sleeping
from fastapi import APIRouter | |
router = APIRouter() | |
async def system(): | |
print("System in running in port 8000") | |
return {"message": "System is running!"} |