mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-12 06:43:10 +00:00
5 lines
129 B
Python
5 lines
129 B
Python
from django.conf.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'^endpoint/$', view='foo.views.endpoint', name='foo.endpoint'),
|
|
]
|