6 lines
150 B
Python
6 lines
150 B
Python
from django.urls import include, path
|
|
|
|
urlpatterns = [
|
|
path("", include("yksa_kit.urls")),
|
|
path("i18n/", include("django.conf.urls.i18n")),
|
|
]
|