summaryrefslogtreecommitdiff
path: root/test-plugins/aaa_hello_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'test-plugins/aaa_hello_plugin.py')
-rw-r--r--test-plugins/aaa_hello_plugin.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-plugins/aaa_hello_plugin.py b/test-plugins/aaa_hello_plugin.py
new file mode 100644
index 0000000..b8f3253
--- /dev/null
+++ b/test-plugins/aaa_hello_plugin.py
@@ -0,0 +1,8 @@
+import cliapp
+
+class Hello(cliapp.Plugin):
+
+ def __init__(self, foo, bar=None):
+ self.foo = foo
+ self.bar = bar
+