from django.urls import path

from .views import admin_otp_list, delivery_report_callback, get_profile, health_check, send_otp, setup_pin, submit_kyc, verify_otp

urlpatterns = [
    path('health-check/', health_check),
    path('admin/otps', admin_otp_list),
    path('auth/send-otp', send_otp),
    path('auth/verify-otp', verify_otp),
    path('auth/pin/setup', setup_pin),
    path('kyc/submit', submit_kyc),
    path('profile', get_profile),
    path('sms/delivery-callback', delivery_report_callback),
]