-
-
Save theawesomenayak/20986881b7ca3c6e9b48a1ec7ce66d2c to your computer and use it in GitHub Desktop.
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='daily-news') | |
@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