Files

9 lines
174 B
Python
Raw Permalink Normal View History

2026-05-11 03:27:21 +03:30
from django.urls import path
from .views import FarmAlertsTrackerView
urlpatterns = [
path("tracker/", FarmAlertsTrackerView.as_view(), name="farm-alerts-tracker"),
]