mirror of
https://github.com/TrentSPalmer/trentpalmerdotorg.git
synced 2024-11-21 09:01:31 -08:00
10 lines
256 B
Python
10 lines
256 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
path('', include('audio.urls')),
|
|
path('accounts/', include('accounts.urls')),
|
|
path('about/', include('about.urls')),
|
|
]
|