8 lines
138 B
Python
8 lines
138 B
Python
from django.urls import path
|
|
from nobotapp.views import CaptchaRedirect
|
|
|
|
|
|
urlpatterns = [
|
|
path('<slug>', CaptchaRedirect.as_view())
|
|
]
|