Ekaropolus 8f10aebfa2
All checks were successful
continuous-integration/drone/push Build is passing
Telegram Bot configurable with handlers
2025-09-16 22:23:05 -06:00

7 lines
170 B
Python

from django.urls import path
from .views import telegram_webhook
urlpatterns = [
path('webhook/<str:bot_name>/', telegram_webhook, name='telegram_webhook'),
]