| 64 | |
| 65 | @dataclass |
| 66 | class FSNodeRuntimeState: |
| 67 | runtime_cfg: FSRuntimeConfig |
| 68 | backend_kind: str |
| 69 | node_role: str |
| 70 | instance_key: str |
| 71 | export_name: str |
| 72 | remote_root_dir: Path |
| 73 | placeholder_root_dir: Path |
| 74 | mount_dir: Path |
| 75 | payload: bytes |
| 76 | patcher: Optional[FluxonFsPatcher] = None |
| 77 | |
| 78 | |
| 79 | def _bench_fs_print(msg: str) -> None: |
no outgoing calls
no test coverage detected