trentpalmerdotorg/about/urls.py

9 lines
132 B
Python
Raw Normal View History

2021-12-03 00:49:05 -08:00
from django.urls import path
from . import views
app_name = "about"
urlpatterns = [
path('apps/', views.apps, name='apps'),
]