Remove legacy client (#58)

* Remove legacy client

* Misc cleanup
This commit is contained in:
2023-11-04 16:13:40 -05:00
committed by GitHub
parent 014489e3bf
commit d3b84c6212
8 changed files with 5 additions and 863 deletions

5
dashboard.py Executable file → Normal file
View File

@@ -6,7 +6,6 @@ import threading
import time
import traceback
import requests
from rich import box
from rich.console import Console
from rich.layout import Layout
@@ -17,8 +16,8 @@ from rich.table import Table
from rich.text import Text
from rich.tree import Tree
from src.workers.base_worker import RenderStatus, string_to_status
from src.server_proxy import RenderServerProxy
from src.engines.core.base_worker import RenderStatus, string_to_status
from src.api.server_proxy import RenderServerProxy
from src.utilities.misc_helper import get_time_elapsed
from start_server import start_server