Created
June 22, 2021 07:41
-
-
Save codemation/e4e81690b4a33cd7bc32ffc4bad7599b to your computer and use it in GitHub Desktop.
hello dev 0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fastapi import FastAPI | |
app = FastAPI() | |
@app.get('/') | |
async def hello_api(): | |
return "hello world" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment