Model/infrastructure/abri/abri_client.py
Daniel Roth b22afcde9f Abri log_job returns the OpenHousing job number from the relay success response 🟥
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-03 14:22:09 +00:00

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