Spaces:
Configuration error
Configuration error
File size: 272 Bytes
df4965a |
1 2 3 4 5 6 7 8 9 |
from django.urls import path
from . import views
urlpatterns = [
path('generate-speech/', views.TextToSpeechCreateView.as_view(), name='Generate speech'),
path('current_user_speech', views.TextToSpeechListView.as_view(), name="Get all speech of Curent User"),
]
|