Last active
July 19, 2016 08:54
-
-
Save philippbosch/de8814d92915d848adf1b148964c1bc8 to your computer and use it in GitHub Desktop.
Chalice Hello World
This file contains 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='mp3duration') | |
@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