aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/api/index.py
blob: 28bff7ddeea6c5eea441270c9267bbaac701ad0b (plain) (blame)
1
2
3
4
5
6
7
8
9
from sanic import Sanic
from sanic.response import json
app = Sanic()
 
 
@app.route('/')
@app.route('/<path:path>')
async def index(request, path=""):
    return json({'hello': path})