9 lines
182 B
Python
9 lines
182 B
Python
class IModule(object):
|
|
"""docstring for Module."""
|
|
|
|
def __init__(self):
|
|
super(IModule, self).__init__()
|
|
|
|
def get_command(self):
|
|
raise NotImplementedError
|