service/src/piracyshield_service/guest/get_all.py
2024-01-19 15:32:27 +01:00

19 lines
416 B
Python

from __future__ import annotations
from piracyshield_service.account.get_all import AccountGetAllService
from piracyshield_data_storage.guest.storage import GuestStorage
class GuestGetAllService(AccountGetAllService):
"""
Retrieves all the guest accounts.
"""
def __init__(self):
"""
Pass the data storage to the parent class.
"""
super().__init__(GuestStorage)