10 lines
273 B
Python
10 lines
273 B
Python
"""Interface for creating a resmoke subcommand."""
|
|
|
|
|
|
class Subcommand(object):
|
|
"""A resmoke subcommand to execute."""
|
|
|
|
def execute(self):
|
|
"""Execute the subcommand."""
|
|
raise NotImplementedError("execue must be implemented by Subcommand subclasses")
|