checkout/src/common/urls.py

10 lines
176 B
Python
Raw Normal View History

2022-04-24 18:59:04 +02:00
from django.urls import path
2023-03-25 21:06:04 +01:00
from common.views import home, ping
2022-04-24 18:59:04 +02:00
app_name = "common"
urlpatterns = [
2023-03-25 21:06:04 +01:00
path("ping/", ping, name="ping"),
2022-04-24 18:59:04 +02:00
path("", home, name="home"),
]