Spaces:
Sleeping
Sleeping
File size: 631 Bytes
113d0af 828d66c 63944ba 113d0af |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from django.urls import path, include
from rest_framework.routers import DefaultRouter
from .views import AudioToText, FongbeToFrancaisText
urlpatterns = [
# path('', include(router.urls)),
# path('UserTranslations/', TranslationListViewSet.as_view(), name="translations"),
# path('TextToDeafSign/', TextToDeafSignViewSet.as_view(), name="text_to_deaf_sign"),
# path('AudioToDeafSign/', AudioToDeafSignViewSet.as_view(), name="audio_to_deaf_sign"),
path('FongbeToFrText/', FongbeToFrancaisText.as_view(), name="fongbe_to_french_text"),
# path('AudioToText/', AudioToText.as_view(), name="audio_to_text")
] |