aboutsummaryrefslogtreecommitdiff
path: root/userpages/urls.py
blob: fe50a9f1cf84a3da982a4633d70da402c63362cb (plain)
1
2
3
4
5
6
7
8
9
from django.urls import path

from . import views

# Configure the URL patterns for username.*
urlpatterns = [
    # match for username.*
    path('', views.home, name='home'),
]