8 lines
No EOL
291 B
Python
8 lines
No EOL
291 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('update_database', views.update_database, name='update_database'),
|
|
path('clear_cache', views.clear_cache, name='clear_cache'),
|
|
path('regen_static_files', views.regen_static_files, name='regen_static_files')
|
|
] |