import datetime as dt
from fastapi import FastAPI
from app.api import ping
app = FastAPI()
app.include_router(ping.router)