mirror of
https://github.com/EDeev/api_processor.git
synced 2026-06-15 11:01:01 +03:00
8 lines
296 B
Python
8 lines
296 B
Python
# api_project/api_app/urls.py
|
|
from django.urls import path
|
|
from .views import AudioToTextView, DocumentToTextView
|
|
|
|
urlpatterns = [
|
|
path('audio-to-text/', AudioToTextView.as_view(), name='audio-to-text'),
|
|
path('document-to-text/', DocumentToTextView.as_view(), name='document-to-text'),
|
|
]
|