mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 04:39:54 -05:00
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')
|