Persist dynamic client registration (unencrypted — not secret).
(client: dict[str, Any])
| 303 | |
| 304 | |
| 305 | def save_client(client: dict[str, Any]) -> None: |
| 306 | """Persist dynamic client registration (unencrypted — not secret).""" |
| 307 | _write_secure(_base_dir() / "client.json", client) |
| 308 | |
| 309 | |
| 310 | def clear_client() -> bool: |
no test coverage detected