mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-15 18:07:02 +00:00
8 lines
189 B
Python
8 lines
189 B
Python
"""task files"""
|
|
"""Django import"""
|
|
import secrets
|
|
def generate_otp():
|
|
"""generate random otp"""
|
|
digits = "0123456789"
|
|
return "".join(secrets.choice(digits) for _ in range(6))
|