sanic/tests/performance/falcon/simple_server.py

12 lines
283 B
Python
Raw Normal View History

2016-10-18 09:22:49 +01:00
# Run with: gunicorn --workers=1 --worker-class=meinheld.gmeinheld.MeinheldWorker falc:app
import falcon
import ujson as json
class TestResource:
def on_get(self, req, resp):
resp.body = json.dumps({"test": True})
app = falcon.API()
app.add_route('/', TestResource())