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

9 lines
233 B
Python

# pxy_sami/api/urls.py
from django.urls import path
from .views import sami_health, sami_run
urlpatterns = [
path("api/sami/health", sami_health, name="sami_health"),
path("api/sami/run", sami_run, name="sami_run"),
]