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