mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-04-25 23:34:42 +00:00
8 lines
192 B
Python
8 lines
192 B
Python
from django.conf.urls import include, url
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from .views import my_view
|
|
|
|
urlpatterns = [
|
|
url(_(r'^$'), my_view, name='bar.my_view'),
|
|
]
|