checkout/src/common/urls.py

10 lines
176 B
Python

from django.urls import path
from common.views import home, ping
app_name = "common"
urlpatterns = [
path("ping/", ping, name="ping"),
path("", home, name="home"),
]