summaryrefslogtreecommitdiff
path: root/quantumclient/common/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'quantumclient/common/command.py')
-rw-r--r--quantumclient/common/command.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/quantumclient/common/command.py b/quantumclient/common/command.py
index 405f655..f2706d0 100644
--- a/quantumclient/common/command.py
+++ b/quantumclient/common/command.py
@@ -33,3 +33,9 @@ class OpenStackCommand(Command):
return
else:
return super(OpenStackCommand, self).run(parsed_args)
+
+ def get_data(self, parsed_args):
+ pass
+
+ def take_action(self, parsed_args):
+ return self.get_data(parsed_args)