feat(cli): add top as an option for servers

This commit is contained in:
Benex254
2024-08-05 09:47:04 +03:00
parent 8525d8fbfc
commit 0f33ef764d

View File

@@ -50,7 +50,7 @@ signal.signal(signal.SIGINT, handle_exit)
@click.option(
"-s",
"--server",
type=click.Choice(SERVERS_AVAILABLE, case_sensitive=False),
type=click.Choice([*SERVERS_AVAILABLE, "top"], case_sensitive=False),
help="Server of choice",
)
@click.option(