Refactor URL routing: break main urls.py into app-specific includes

This commit is contained in:
Eduardo Silva
2026-02-10 11:50:36 -03:00
parent f2faf752ad
commit 5e8bf1a3ab
21 changed files with 237 additions and 123 deletions

7
wgrrd/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from wgrrd.views import view_rrd_graph
urlpatterns = [
path('graph/', view_rrd_graph, name='rrd_graph'),
]