Ekaropolus 0eb2b393f2
All checks were successful
continuous-integration/drone/push Build is passing
SAMI Functionality add
2025-09-16 16:18:45 -06:00

8 lines
155 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"),
]