From 02a9406d14a4f4c4e2817dc48e2139a3157b5988 Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 5 Nov 2024 18:28:16 -0800 Subject: [PATCH] Revert "add v1 support" This reverts commit c216eeafebcf22d32c8a17042988171521e6d902. --- reflex/reflex.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/reflex/reflex.py b/reflex/reflex.py index 0a552c3fb..ab7f53741 100644 --- a/reflex/reflex.py +++ b/reflex/reflex.py @@ -10,7 +10,6 @@ from typing import List, Optional import typer import typer.core from reflex_cli.deployments import deployments_cli -from reflex_cli.v2.deployments import hosting_cli from reflex_cli.utils import dependency from reflex import constants @@ -384,13 +383,6 @@ def login( _login() -@cli.command() -def loginv2(loglevel: constants.LogLevel = typer.Option(config.loglevel)): - from reflex_cli.v2 import cli as hosting_cli - - hosting_cli.login() - - @cli.command() def logout( loglevel: constants.LogLevel = typer.Option( @@ -708,11 +700,6 @@ cli.add_typer( name="deployments", help="Subcommands for managing the Deployments.", ) -cli.add_typer( - hosting_cli, - name="apps", - help="Subcommands for managing the Deployments.", -) cli.add_typer( custom_components_cli, name="component",