mirror of
https://github.com/YunoHost-Apps/pyinventory_ynh.git
synced 2024-09-03 20:16:09 +02:00
6 lines
145 B
Python
6 lines
145 B
Python
|
from django.conf.urls import include
|
||
|
from django.urls import path
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('__PATH_URL__/', include('inventory_project.urls'))
|
||
|
]
|