mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
7 lines
118 B
Python
7 lines
118 B
Python
|
from django.conf.urls import url
|
||
|
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^$', views.index, name='index')
|
||
|
]
|