REPOSITORY
hada/greenhouse-transport-platform Private
[참조 MVP] 온실 이송 플랫폼 고도화 — 이송 플랫폼의 주행·적재·현장 실증 상태를 제공하는 위탁연구 참조 MVP입니다.
https://git.agrithing.ai/hada/greenhouse-transport-platform.git 314c1df feat: 온실 이송 플랫폼 고도화 구체 MVP 구현
4315384 ci: add static dynamic and evidence gates
35b4834 feat: add executable institution reference MVP
8e1eda4 docs: define product role and interface contract
12 items · feat/concrete-mvp-v2
.asw directory → .gitea directory → asw_component directory → contracts directory → examples directory → release directory → tests directory → tools directory → NOTICE.md 158 B → pyproject.toml 217 B → README.md 1.1 KB → run.py 309 B →
·/ run.py
python · 309 B · e9d5621 Download
from __future__ import annotationsimport jsonimport sysfrom asw_component import executepath = sys.argv[1] if len(sys.argv) > 1 else Nonewith open(path, encoding="utf-8") if path else sys.stdin as source: payload = json.load(source)print(json.dumps(execute(payload), ensure_ascii=False, indent=2))