urls.py 107 B

1234567
  1. from django.urls import path
  2. from . import views
  3. urlpatterns = [
  4. path('', views.home, name="home"),
  5. ]