mirror of
https://github.com/TrentSPalmer/trentpalmerdotorg.git
synced 2024-11-21 17:11:30 -08:00
9 lines
132 B
Python
9 lines
132 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = "about"
|
|
|
|
urlpatterns = [
|
|
path('apps/', views.apps, name='apps'),
|
|
]
|