Ekaropolus 7e135e92ba
All checks were successful
continuous-integration/drone/push Build is passing
Bot Reply template
2025-09-17 00:20:26 -06:00

10 lines
413 B
Python

# pxy_bots/api/urls.py
from django.urls import path
from . import views
urlpatterns = [
path("bots/health/", views.health, name="pxy_bots_health"), # (if you have it)
path("bots/echo_render", views.echo_render, name="pxy_bots_echo_render"), # (you already had)
path("bots/template_reply", views.template_reply, name="pxy_bots_template_reply"), # <-- NEW
]