From 80425548e106097ae4c184a25c0ba6e46db3998e Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Sat, 9 Mar 2024 23:18:28 +0100 Subject: [PATCH] feat: add a new to sanic server instance --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index 144943a..2390c16 100644 --- a/server.py +++ b/server.py @@ -10,7 +10,7 @@ from sanic.response import text from sanic.exceptions import abort -app = Sanic() +app = Sanic(name="Webhooks") secret = open("./github_webhook_secret", "r").read().strip() gitbot_password = open("./gitbot_password", "r").read().strip()