Files
mongo/buildscripts/resmokelib/commands/interface.py
2020-04-30 14:25:37 +00:00

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")