mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-12 14:53:08 +00:00
8 lines
198 B
Python
8 lines
198 B
Python
from django.urls import include, re_path as url
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from .views import my_view
|
|
|
|
urlpatterns = [
|
|
url(_(r'^$'), my_view, name='bar.my_view'),
|
|
]
|