checkout/src/common/urls.py

9 lines
132 B
Python
Raw Normal View History

2022-04-24 18:59:04 +02:00
from django.urls import path
from common.views import home
app_name = "common"
urlpatterns = [
path("", home, name="home"),
]