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