2021-11-23 23:00:25 +02:00
|
|
|
from sanic import Sanic, response
|
|
|
|
|
2017-05-21 03:14:58 -07:00
|
|
|
|
2021-12-24 00:30:27 +02:00
|
|
|
app = Sanic("Example")
|
2017-05-21 03:14:58 -07:00
|
|
|
|
2017-06-01 11:53:05 -07:00
|
|
|
|
2017-05-21 03:14:58 -07:00
|
|
|
@app.route("/test")
|
|
|
|
async def test(request):
|
|
|
|
return response.text("OK")
|
|
|
|
|
2021-11-23 23:00:25 +02:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2022-09-18 17:17:23 +03:00
|
|
|
app.run(unix="./uds_socket")
|