1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
django-client-reverse/django_client_reverse/urls.py

6 lines
140 B
Python

from django.conf.urls import include, url
from .views import Reverser
urlpatterns = [
url(r'^$', Reverser.as_view(), name="reverser")
]