monolith/api/views.py

13 lines
194 B
Python
Raw Normal View History

2022-07-21 12:40:11 +00:00
from klein import Klein
class API(object):
"""
Our API webapp.
"""
app = Klein()
@app.route("/test", methods=["GET"])
def hello(self, request):
return "Hello"