regluit/bisac/urls.py

7 lines
111 B
Python

from django.conf.urls import url, include
from .views import tree
urlpatterns = [
url(r"^tree$", tree),
]