11 lines
No EOL
264 B
Python
11 lines
No EOL
264 B
Python
from django.urls import path, include
|
|
from django.conf import settings
|
|
|
|
|
|
urlpatterns = [
|
|
path('auth/', include("core.urls.auth")),
|
|
path('', include("core.urls.frontend")),
|
|
]
|
|
|
|
if settings.DEBUG:
|
|
urlpatterns.append(path('dev/', include("core.urls.dev"))) |