Files
RasadDam_Backend/apps/captcha_app/api/v1/urls.py

9 lines
200 B
Python
Raw Normal View History

2025-05-04 15:24:28 +03:30
from django.urls import path, include
from .views import CustomizeRestCaptchaView
app_name = 'captcha_app'
urlpatterns = [
path('captcha/', CustomizeRestCaptchaView.as_view(), name='captcha')
]