aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/home/urls.py
blob: ccbb58240fd206594966cce7209f49379d325930 (plain) (blame)
1
2
3
4
5
6
7
8
from django_distill import distill_path

from .views import HomeView

app_name = 'home'
urlpatterns = [
    distill_path('', HomeView.as_view(), name='home'),
]