Created
June 6, 2020 17:43
-
-
Save DoguD/41a8a23e4dfbc9651b43d834fd391a70 to your computer and use it in GitHub Desktop.
Chalice initial app.py
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 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