8 lines
171 B
Python
8 lines
171 B
Python
|
|
from django.urls import path
|
||
|
|
|
||
|
|
from .views import FarmDashboardConfigView
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("", FarmDashboardConfigView.as_view(), name="farm-dashboard-config"),
|
||
|
|
]
|