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