mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
14 lines
432 B
Python
14 lines
432 B
Python
from backend.magic_plan.models import MagicPlanDetail, MagicPlanSummary
|
|
|
|
|
|
class MagicPlanClient:
|
|
BASE_URL = "https://cloud.magicplan.app/api/v2"
|
|
|
|
def __init__(self, _api_key: str) -> None:
|
|
raise NotImplementedError
|
|
|
|
def get_plans(self, _project_id: str) -> list[MagicPlanSummary]:
|
|
raise NotImplementedError
|
|
|
|
def get_plan_xml(self, _plan_id: str) -> MagicPlanDetail:
|
|
raise NotImplementedError
|