borg-web/borgweb/borg/urls.py
George Lacey c6b5ddbd2e Create initial project
- create borg package
- create initial database with migration
2021-05-06 06:34:08 +01:00

7 lines
109 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]