1 2 3 4 5 6 7 8 9 10 11 12 13 14
from abc import ABC from ..abstractions import R2RProviders from ..config import R2RConfig class Service(ABC): def __init__( self, config: R2RConfig, providers: R2RProviders, ): self.config = config self.providers = providers