diff --git a/commands/product.py b/commands/product.py index 16dbb31..abb76e1 100755 --- a/commands/product.py +++ b/commands/product.py @@ -5,13 +5,6 @@ from decouple import config from .helper import OTPCredentials, load_dump_pretty -def product_command(command, otp): - data = {**otp.get_json(), "action": command} - r = requests.post(f"{config('UCLOUD_PAY_SERVER')}/product/action", - json=data) - return r - - @click.group() def product(): pass