sanic/tests/performance/bottle/simple_server.py

13 lines
261 B
Python
Raw Normal View History

# Run with: gunicorn --workers=1 --worker-class=meinheld.gmeinheld.MeinheldWorker -b :8000 simple_server:app
import bottle
from bottle import route, run
import ujson
2018-12-30 11:18:06 +00:00
@route("/")
def index():
2018-12-30 11:18:06 +00:00
return ujson.dumps({"test": True})
app = bottle.default_app()