mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-22 08:48:38 +00:00
13 lines
369 B
Python
13 lines
369 B
Python
import requests
|
|
|
|
from domain.abri.models import LogJobRequest, LogJobResult
|
|
from infrastructure.abri.config import AbriConfig
|
|
|
|
|
|
class AbriClient:
|
|
def __init__(self, config: AbriConfig) -> None:
|
|
self._config = config
|
|
self._session = requests.Session()
|
|
|
|
def log_job(self, request: LogJobRequest) -> LogJobResult:
|
|
raise NotImplementedError
|