mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
13 lines
242 B
Python
13 lines
242 B
Python
from django.conf.urls import include
|
|
from django.urls import re_path
|
|
|
|
app_name = 'example'
|
|
|
|
module_urls = [
|
|
# Add your module URLs here
|
|
]
|
|
|
|
urlpatterns = [
|
|
re_path(r'^example/', include((module_urls, app_name), namespace=app_name)),
|
|
]
|