Skip to content

Instantly share code, notes, and snippets.

@DoguD
Created June 6, 2020 17:43
Show Gist options
  • Save DoguD/41a8a23e4dfbc9651b43d834fd391a70 to your computer and use it in GitHub Desktop.
Save DoguD/41a8a23e4dfbc9651b43d834fd391a70 to your computer and use it in GitHub Desktop.
Chalice initial app.py
from chalice import Chalice
app = Chalice(app_name='s3_presigned_file_upload')
@app.route('/')
def index():
return {'hello': 'world'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment