tJango/hello/urls.py
2024-06-27 21:21:38 +03:00

6 lines
111 B
Python

from django.urls import path
from hello import views
urlpatterns = [
path("", views.home, name="home"),
]