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