Files
Logic/Modules/Backend/water/weather_urls.py
T
2026-05-11 03:27:21 +03:30

8 lines
169 B
Python

from django.urls import path
from .views import WeatherFarmCardView
urlpatterns = [
path("farm-card/", WeatherFarmCardView.as_view(), name="weather-farm-card"),
]