Update Get User

This commit is contained in:
Whispering Wind
2024-08-11 12:32:17 +03:30
committed by GitHub
parent 5dbb4d7955
commit 03ceffa8d9

View File

@ -98,12 +98,15 @@ def restart_hysteria2():
def change_hysteria2_port(port: int): def change_hysteria2_port(port: int):
run_cmd(['bash', Command.CHANGE_PORT_HYSTERIA2.value, str(port)]) run_cmd(['bash', Command.CHANGE_PORT_HYSTERIA2.value, str(port)])
@cli.command('get-user') @cli.command('get-user')
@click.option('--username', '-u', required=True, help='Username for the user to get', type=str) @click.option('--username', '-u', required=True, help='Username for the user to get', type=str)
def get_user(username: str): @click.option('--no-traffic', '-t', is_flag=True, help='Do not display traffic information')
run_cmd(['bash', Command.GET_USER.value, username]) def get_user(username: str, no_traffic: bool):
cmd = ['bash', Command.GET_USER.value, '-u', str(username)]
if no_traffic:
cmd.append('-t')
run_cmd(cmd)
@cli.command('add-user') @cli.command('add-user')
@click.option('--username', '-u', required=True, help='Username for the new user', type=str) @click.option('--username', '-u', required=True, help='Username for the new user', type=str)