9 lines
258 B
Python
9 lines
258 B
Python
class Integration:
|
|
@staticmethod
|
|
def get_recipe(string):
|
|
raise Exception('Method not implemented in storage integration')
|
|
|
|
@staticmethod
|
|
def get_export(recipe):
|
|
raise Exception('Method not implemented in storage integration')
|