1
0
mirror of https://github.com/django/django.git synced 2025-01-04 07:26:38 +00:00
django/tests/sitemaps_tests/urls/sitemap_only.py

10 lines
241 B
Python
Raw Normal View History

from django.contrib.sitemaps import views
from django.urls import path
urlpatterns = [
path(
'sitemap-without-entries/sitemap.xml', views.sitemap,
{'sitemaps': {}}, name='django.contrib.sitemaps.views.sitemap',
),
]