docs: scaffold polisher-control foundation
This commit is contained in:
17
host/polisher_control/data_layout.py
Normal file
17
host/polisher_control/data_layout.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
def manual_session_dir(data_root: Path, session_id: str) -> Path:
|
||||
return data_root / "manual" / session_id
|
||||
|
||||
|
||||
def run_dir(data_root: Path, run_id: str) -> Path:
|
||||
return data_root / "runs" / run_id
|
||||
|
||||
|
||||
def expected_manual_files(session_id: str) -> list[str]:
|
||||
return [
|
||||
"manual-session-log.v1.json",
|
||||
"telemetry.csv",
|
||||
"manifest.json",
|
||||
]
|
||||
Reference in New Issue
Block a user