Files
RasadDam_Backend/apps/captcha_app/api/v1/urls.py
2025-05-04 15:24:28 +03:30

9 lines
200 B
Python

from django.urls import path, include
from .views import CustomizeRestCaptchaView
app_name = 'captcha_app'
urlpatterns = [
path('captcha/', CustomizeRestCaptchaView.as_view(), name='captcha')
]