4726cf1910
Co-authored-by: Néstor Pérez <25409753+prryplatypus@users.noreply.github.com>
14 lines
199 B
Python
14 lines
199 B
Python
from sanic import Sanic, response
|
|
|
|
|
|
app = Sanic("Example")
|
|
|
|
|
|
@app.route("/test")
|
|
async def test(request):
|
|
return response.text("OK")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run(unix="./uds_socket")
|