7 lines
109 B
Python
7 lines
109 B
Python
|
import random
|
||
|
|
||
|
def sent_sms_code(phone):
|
||
|
pass
|
||
|
|
||
|
def generate_code():
|
||
|
return random.randint(1000, 9999)
|