Files

8 lines
163 B
Python
Raw Permalink Normal View History

2026-04-10 16:12:51 +03:30
from django.urls import path
2026-04-29 02:58:56 +03:30
from .views import AlertTrackerView
2026-04-10 16:12:51 +03:30
urlpatterns = [
path("tracker/", AlertTrackerView.as_view(), name="farm-alerts-tracker"),
]