kumidc/authentication/urls/reverify.py

8 lines
155 B
Python
Raw Normal View History

2022-08-04 11:15:10 +00:00
from django.urls import path
from ..views.reverify import ReverifyView
urlpatterns = [
path("reverify/", ReverifyView.as_view(), name="reverify"),
]