sanic/tests/performance/bottle/simple_server.py
2016-10-16 07:52:10 +02:00

11 lines
161 B
Python

from bottle import route, run
import ujson
@route('/')
def index():
return ujson.dumps({'test': True})
run(server='gunicorn', host='0.0.0.0', port=8080)