File: urls.py

package info (click to toggle)
django-haystack 3.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,504 kB
  • sloc: python: 23,475; xml: 1,708; sh: 74; makefile: 71
file content (5 lines) | stat: -rw-r--r-- 131 bytes parent folder | download | duplicates (2)
1
2
3
4
5
from django.urls import path

from .views import simple_view

urlpatterns = [path("simple-view", simple_view, name="simple-view")]