sanic/tests/performance/bottle/simple_server.py
L. Kärkkäinen 209840b771 ruff --fix
2023-10-25 00:21:29 +01:00

14 lines
257 B
Python

# Run with: gunicorn --workers=1 --worker-class=meinheld.gmeinheld.MeinheldWorker -b :8000 simple_server:app
import bottle
import ujson
from bottle import route
@route("/")
def index():
return ujson.dumps({"test": True})
app = bottle.default_app()