9 lines
172 B
Python
9 lines
172 B
Python
from django.urls import re_path
|
|
from django.views import generic
|
|
|
|
app_name = 'fake_app'
|
|
|
|
urlpatterns = [
|
|
re_path(r'^$', generic.TemplateView.as_view(), name='root'),
|
|
]
|