Skip to content

Instantly share code, notes, and snippets.

@theawesomenayak
Created October 11, 2020 06:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theawesomenayak/20986881b7ca3c6e9b48a1ec7ce66d2c to your computer and use it in GitHub Desktop.
Save theawesomenayak/20986881b7ca3c6e9b48a1ec7ce66d2c to your computer and use it in GitHub Desktop.
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