mirror of
https://github.com/Crocmagnon/checkout.git
synced 2024-11-23 00:28:03 +01:00
10 lines
242 B
Python
10 lines
242 B
Python
from django.urls import path
|
|
|
|
from common import views
|
|
|
|
app_name = "common"
|
|
urlpatterns = [
|
|
path("error_check/", views.error_check, name="error_check"),
|
|
path("ping/", views.ping, name="ping"),
|
|
path("", views.home, name="home"),
|
|
]
|