KaraokeTestudaiBackend/lyrics/urls.py

8 lines
158 B
Python

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