Spaces:
Running
Running
File size: 341 Bytes
3c8503b 636ac8b a6093bb 3c8503b 636ac8b 3c8503b 636ac8b ddee1cf 636ac8b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | from fastapi import FastAPI
from va_hr_lmd.api.router import router
from garuda.api.router import router as flight_router
app = FastAPI(title="Dummy HR API")
app.include_router(router)
app.include_router(flight_router)
# from fastapi import FastAPI
# app = FastAPI()
# @app.get("/")
# def greet_json():
# return {"Hello": "World!"}
|