File size: 178 Bytes
598f7ca
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from fastapi import APIRouter

router = APIRouter()

@router.get("/")
async def system():
    print("System in running in port 8000")
    return {"message": "System is running!"}