File size: 105 Bytes
61f7638
 
 
 
 
 
1
2
3
4
5
6
from django.urls import path
from . import views

urlpatterns = [
    path("", views.home, name="home")
]