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

8 lines
262 B
Python

from django.urls import path
from .views import echo_render, health # health if you already have it
urlpatterns = [
path("bots/echo_render", echo_render, name="pxy_bots_echo_render"),
path("bots/health/", health, name="pxy_bots_health"), # optional
]