Files
Backend/auth/urls.py
T

10 lines
238 B
Python
Raw Normal View History

2026-02-19 01:19:22 +03:30
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"),
]