dataclerk-openenv / app /server.py
vedhanth66's picture
Fix server entry point
bd9279a
raw
history blame contribute delete
143 Bytes
from fastapi import FastAPI
def main():
app = FastAPI()
@app.get("/")
def root():
return {"status": "ok"}
return app