4 lines
123 B
Python
4 lines
123 B
Python
class BackendBase(object):
|
|
def execute(self, input_filename, language=None): # NOQA
|
|
raise NotImplementedError
|