7 lines
144 B
Python
7 lines
144 B
Python
from django.urls import path
|
|
from pxy_de import api as de_api
|
|
|
|
urlpatterns = [
|
|
path("api/de/health", de_api.de_health, name="de_health"),
|
|
]
|