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

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