django/tests/user_commands/urls.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
105 B
Python
Raw Normal View History

from django.urls import path
urlpatterns = [
path("some/url/", lambda req: req, name="some_url"),
]