mirror of
https://github.com/instructkr/claw-code.git
synced 2026-04-03 17:44:47 +08:00
17 lines
619 B
Python
17 lines
619 B
Python
"""Python package placeholder for the archived `voice` subsystem."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
from pathlib import Path
|
|
|
|
SNAPSHOT_PATH = Path(__file__).resolve().parent.parent / 'reference_data' / 'subsystems' / 'voice.json'
|
|
_SNAPSHOT = json.loads(SNAPSHOT_PATH.read_text())
|
|
|
|
ARCHIVE_NAME = _SNAPSHOT['archive_name']
|
|
MODULE_COUNT = _SNAPSHOT['module_count']
|
|
SAMPLE_FILES = tuple(_SNAPSHOT['sample_files'])
|
|
PORTING_NOTE = f"Python placeholder package for '{ARCHIVE_NAME}' with {MODULE_COUNT} archived module references."
|
|
|
|
__all__ = ['ARCHIVE_NAME', 'MODULE_COUNT', 'PORTING_NOTE', 'SAMPLE_FILES']
|