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