Skip to content

Instantly share code, notes, and snippets.

@MwinyiMoha
Created February 10, 2021 19:21
Show Gist options
  • Save MwinyiMoha/fe9bb6a3f6fd5336962558fe6d0c787e to your computer and use it in GitHub Desktop.
Save MwinyiMoha/fe9bb6a3f6fd5336962558fe6d0c787e to your computer and use it in GitHub Desktop.
from fastapi import FastAPI
app = FastAPI(title='Hello')
@app.get('/')
def root():
return {'service': 'Hello World', 'docs_url': '/docs'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment