kauabarros-24
CHORE: Changed imports for ai
793a0d3
raw
history blame contribute delete
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!"}