2024-03-18 06:48:56 +00:00
|
|
|
from django.urls import path
|
2023-10-19 22:44:24 +00:00
|
|
|
|
|
|
|
from . import views as cpatch_views
|
2016-11-28 19:53:27 +00:00
|
|
|
|
2017-11-03 15:47:21 +00:00
|
|
|
urlpatterns = [
|
2024-03-18 06:48:56 +00:00
|
|
|
path('', cpatch_views.index),
|
2017-11-03 15:47:21 +00:00
|
|
|
]
|