gpp/port/urls.py
2019-06-08 13:08:57 +02:00

9 lines
130 B
Python

from django.urls import path
from .views.index import *
app_name = 'index'
urlpatterns = [
path('', index, name='index'),
]