fleet-management/back-end/app/main.py

10 lines
202 B
Python

from fastapi import FastAPI
from routers import vehicleInformation
app = FastAPI()
app.include_router(vehicleInformation.router)
@app.get("/")
async def root():
return {"message": "Hello World!"}