vedhanth66's picture
Fix callable main function
ac5cf84
raw
history blame contribute delete
183 Bytes
from fastapi import FastAPI
def main():
app = FastAPI()
@app.get("/")
def root():
return {"status": "ok"}
return app
if __name__ == "__main__":
main()