kauabarros-24
AI and api
29b1b0f
raw
history blame
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!"}