KR_API / src /kr_api /routes /system.py
kauabarros-24
Ai api
598f7ca
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!"}