nyx/tests/dynamic_fixtures/surface/python_django/urls.py

11 lines
124 B
Python
Raw Permalink Normal View History

2026-06-05 10:16:30 -05:00
from django.urls import path
def admin_view(request):
return None
urlpatterns = [
path("admin/", admin_view),
]