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