mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
7 lines
157 B
Python
7 lines
157 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.index, name= "index"),
|
|
path("", views.migration_home, name= "migration"),
|
|
] |