Initial commit

This commit is contained in:
dan
2021-06-07 00:49:52 -04:00
commit 0aae59b0df
3 changed files with 22 additions and 0 deletions

8
main.py Normal file
View File

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