We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
``app.yaml`` describes the routes for the apps. The yaml structure is ```yaml routes: '/,index.html'/: function: hello methods: [get]
is equivalent to
@app.route( '/', methods=['GET']) @app.route( '/index.html', methods=['GET']) def hello(): return "hello"
There was an error while loading. Please reload this page.