data-storage/src/piracyshield_data_storage/provider/storage.py

11 lines
256 B
Python
Raw Normal View History

2024-01-19 16:01:41 +01:00
from piracyshield_data_storage.account.storage import AccountStorage
class ProviderStorage(AccountStorage):
COLLECTION = 'providers'
collection_instance = None
def __init__(self):
super().__init__(collection_name = self.COLLECTION)