7 lines
119 B
Python
7 lines
119 B
Python
from django.urls import path
|
|
|
|
from . import views as cpatch_views
|
|
|
|
urlpatterns = [
|
|
path('', cpatch_views.index),
|
|
]
|