Ekaropolus ab7b9e0240
All checks were successful
continuous-integration/drone/push Build is passing
Call back routed
2025-09-16 21:23:44 -06:00

8 lines
256 B
Python

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