Files
Ai/farm_alerts/urls.py
T

10 lines
284 B
Python
Raw Normal View History

2026-04-25 17:22:41 +03:30
from django.urls import path
from .views import FarmAlertsTimelineView, FarmAlertsTrackerView
urlpatterns = [
path("tracker/", FarmAlertsTrackerView.as_view(), name="farm-alerts-tracker"),
path("timeline/", FarmAlertsTimelineView.as_view(), name="farm-alerts-timeline"),
]