mirror of
https://github.com/Damillora/Altessimo
synced 2024-11-22 05:57:31 +00:00
8 lines
95 B
Python
8 lines
95 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('',views.index),
|
|
]
|