tubesync/app/sync/urls.py
2020-11-23 17:32:02 +11:00

15 lines
167 B
Python

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