Files
Ai/farm_alerts/urls.py
T
2026-04-29 02:58:45 +03:30

9 lines
174 B
Python

from django.urls import path
from .views import FarmAlertsTrackerView
urlpatterns = [
path("tracker/", FarmAlertsTrackerView.as_view(), name="farm-alerts-tracker"),
]