Files
library/main.py
2021-06-07 00:49:52 -04:00

8 lines
116 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get('/')
async def root():
return {"message": "Hello World"}