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