4 lines
104 B
Python
4 lines
104 B
Python
class BackendBase(object):
|
|
def execute(input_filename, language=None):
|
|
raise NotImplemented
|