Container tracking record.
| 27 | |
| 28 | @dataclass |
| 29 | class ContainerRecord: |
| 30 | """Container tracking record.""" |
| 31 | |
| 32 | container_id: str |
| 33 | container_name: str |
| 34 | image_name: str |
| 35 | owner_pid: int |
| 36 | created_at: int |
| 37 | config_hash: str = "" # Hash of container configuration (path + params) |
| 38 | platform_type: str = "" # Platform family (e.g., "avr", "esp-32s3") for GC |
| 39 | |
| 40 | |
| 41 | class ContainerDatabase: |
no outgoing calls
no test coverage detected