mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-20 20:16:35 +00:00
15 lines
167 B
Python
15 lines
167 B
Python
from django.urls import path
|
|
from .views import IndexView
|
|
|
|
|
|
app_name = 'sync'
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path('',
|
|
IndexView.as_view(),
|
|
name='index'),
|
|
|
|
]
|