Files
django-dav-events/dav_base/tests/fake_app1/urls.py
T
heinzel 8d0069a9e6
Run tests / Execute tox to run the test suite (push) Successful in 3m27s
Improved tests for app settings and added tests for dav_base.config.modules.ModuleMeta
2026-05-21 13:38:34 +02:00

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'),
]