TandoorRecipes/cookbook/provider/provider.py
2019-11-14 10:29:24 +01:00

13 lines
378 B
Python

class Provider:
@staticmethod
def import_all(monitor):
raise Exception('Method not implemented in storage provider')
@staticmethod
def create_share_link(recipe):
raise Exception('Method not implemented in storage provider')
@staticmethod
def get_share_link(recipe):
raise Exception('Method not implemented in storage provider')