mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
13 lines
378 B
Python
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')
|