borg-web/borgweb/borg/urls.py
2021-05-07 20:31:19 +01:00

11 lines
263 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('repo', views.get_repo, name='repo'),
path('archive', views.get_archive, name='archive'),
path('error', views.get_error, name='error'),
]