gpp/port/urls.py

9 lines
130 B
Python
Raw Normal View History

2019-05-27 08:04:29 +02:00
from django.urls import path
2019-06-08 13:08:57 +02:00
from .views.index import *
2019-05-27 08:04:29 +02:00
2019-06-08 13:08:57 +02:00
app_name = 'index'
2019-05-27 08:04:29 +02:00
urlpatterns = [
2019-06-08 13:08:57 +02:00
path('', index, name='index'),
2019-05-27 08:04:29 +02:00
]