tubesync/app/sync/urls.py

15 lines
167 B
Python
Raw Normal View History

2020-11-23 06:32:02 +00:00
from django.urls import path
from .views import IndexView
app_name = 'sync'
urlpatterns = [
path('',
IndexView.as_view(),
name='index'),
]