10 lines
413 B
Python
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
|
|
]
|