9 lines
130 B
Python
9 lines
130 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/ping")
|
|
def ping():
|
|
return {"msg": "hello from dummy app"}
|