Coverage for cookbook/provider/provider.py: 68%
19 statements
« prev ^ index » next coverage.py v7.4.0, created at 2023-12-29 00:47 +0100
« prev ^ index » next coverage.py v7.4.0, created at 2023-12-29 00:47 +0100
1class Provider:
2 @staticmethod
3 def import_all(monitor):
4 raise Exception('Method not implemented in storage provider')
6 @staticmethod
7 def create_share_link(recipe):
8 raise Exception('Method not implemented in storage provider')
10 @staticmethod
11 def get_share_link(recipe):
12 raise Exception('Method not implemented in storage provider')
14 @staticmethod
15 def get_file(recipe):
16 raise Exception('Method not implemented in storage provider')
18 @staticmethod
19 def rename_file(recipe, new_name):
20 raise Exception('Method not implemented in storage provider')
22 @staticmethod
23 def delete_file(recipe):
24 raise Exception('Method not implemented in storage provider')