Files
web2.0-backend/nobotapp/urls.py
T
2019-06-08 17:27:48 +03:00

8 lines
138 B
Python

from django.urls import path
from nobotapp.views import CaptchaRedirect
urlpatterns = [
path('<slug>', CaptchaRedirect.as_view())
]