Skip to content

Instantly share code, notes, and snippets.

@codemation
Created June 22, 2021 07:41
Show Gist options
  • Save codemation/e4e81690b4a33cd7bc32ffc4bad7599b to your computer and use it in GitHub Desktop.
Save codemation/e4e81690b4a33cd7bc32ffc4bad7599b to your computer and use it in GitHub Desktop.
hello dev 0
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