mirror of
https://github.com/Crocmagnon/checkout.git
synced 2024-11-23 08:38:02 +01:00
9 lines
132 B
Python
9 lines
132 B
Python
|
from django.urls import path
|
||
|
|
||
|
from common.views import home
|
||
|
|
||
|
app_name = "common"
|
||
|
urlpatterns = [
|
||
|
path("", home, name="home"),
|
||
|
]
|