FastAPI-Oauth2/app/main.py

9 lines
118 B
Python
Raw Normal View History

2021-09-12 08:45:44 +00:00
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_main():
return {"msg": "Hello World"}