Exemple #1
0
def verify_phone_code(phone_num, vcode):
    return VerificationCode.verify_vcode(phone_num, vcode)
Exemple #2
0
def generate_common_verify_code(receiver, receiver_type):
    code = VerificationCode.generate_common_code(receiver, receiver_type)
    return str(code)