about summary refs log tree commit diff
path: root/.venv/lib/python3.12/site-packages/core/main/services/base.py
blob: dcd98fd52d0cac205d79cbf4286c0232dbc10397 (plain)
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