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
console/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from console.views import view_console
urlpatterns = [
path('', view_console, name='console'),
]