oncall-engine/engine/apps/telegram/urls.py
2024-01-22 13:48:19 +08:00

9 lines
165 B
Python

from django.urls import path
from .views import WebHookView
app_name = "telegram"
urlpatterns = [
path("", WebHookView.as_view(), name="incoming_webhook"),
]