mirror of
https://github.com/kennethreitz/responder.git
synced 2026-06-05 23:00:17 +00:00
12 lines
140 B
Python
12 lines
140 B
Python
import responder
|
|
|
|
api = responder.API(enable_hsts=True)
|
|
|
|
|
|
@api.route("/")
|
|
def route(req, resp):
|
|
resp.text = "hello, world!"
|
|
|
|
|
|
api.run()
|