Ensure the data directory exists.
()
| 9 | |
| 10 | |
| 11 | def ensure_data_dir(): |
| 12 | """Ensure the data directory exists.""" |
| 13 | Path(DATA_DIR).mkdir(parents=True, exist_ok=True) |
| 14 | |
| 15 | |
| 16 | def get_conversation_path(conversation_id: str) -> str: |
no outgoing calls
no test coverage detected