mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-17 02:45:08 +00:00
13 lines
198 B
Python
13 lines
198 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))
|