10 lines
238 B
Python
10 lines
238 B
Python
from django.urls import path
|
|
|
|
from .views import AuthenticationView
|
|
|
|
urlpatterns = [
|
|
path("request-otp/", AuthenticationView.as_view(), name="request-otp"),
|
|
path("verify-otp/", AuthenticationView.as_view(), name="verify-otp"),
|
|
]
|
|
|