summaryrefslogtreecommitdiff
path: root/test-plugins/oldhello_plugin.py
blob: 9af3f8356a3c68596e3d27a120c18ed7c22ed484 (plain)
1
2
3
4
5
6
7
8
9
10
import cliapp

class Hello(cliapp.Plugin):

    def __init__(self, foo, bar=None):
        self.foo = foo
        self.bar = bar

    def enable(self):
        pass