summaryrefslogtreecommitdiffstats
path: root/cli/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'cli/cli.py')
-rw-r--r--cli/cli.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/cli.py b/cli/cli.py
index 4a1547b..de05f55 100644
--- a/cli/cli.py
+++ b/cli/cli.py
@@ -82,7 +82,7 @@ class OgCLI():
OgModes.set_modes(self.rest, args[1:])
def send(self, args):
- choices = ['wol', 'poweroff']
+ choices = ['wol', 'poweroff', 'refresh']
parser = argparse.ArgumentParser(prog='ogcli send')
parser.add_argument('send_obj', choices=choices)
parsed_args = parser.parse_args([args[0]])
@@ -91,6 +91,8 @@ class OgCLI():
OgWol.send_wol(self.rest, args[1:])
elif parsed_args.send_obj == 'poweroff':
OgPoweroff.send_poweroff(self.rest, args[1:])
+ elif parsed_args.send_obj == 'refresh':
+ OgClient.send_refresh(self.rest, args[1:])
def restore(self, args):
choices = ['image']