示例#1
0
def main():
    clear()
    header()

    account_auth = False

    while not account_auth:
        account_auth = Auth.auth_client()
        if not account_auth:
            clear()
            header()
            invalid_account()

    account = Account(account_auth)

    option = account.show_operations()
    account.call_operation(option)