tJango/hello/urls.py

7 lines
111 B
Python
Raw Permalink Normal View History

2024-06-27 21:21:38 +03:00
from django.urls import path
from hello import views
urlpatterns = [
path("", views.home, name="home"),
]