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

10 lines
202 B
Python
Raw Normal View History

2024-08-20 01:37:44 -05:00
from fastapi import FastAPI
from routers import vehicleInformation
2024-08-20 01:37:44 -05:00
app = FastAPI()
app.include_router(vehicleInformation.router)
2024-08-20 01:37:44 -05:00
@app.get("/")
async def root():
return {"message": "Hello World!"}