use std::path::PathBuf;
#[allow(dead_code)]
pub fn session_exists(_session_id: &str) -> bool {
false
}
#[allow(dead_code)]
pub fn load_transcript(_session_id: &str) -> Vec<String> {
vec![]
}
#[allow(dead_code)]
pub fn save_transcript(_session_id: &str, _transcript: &[String]) -> Result<(), String> {
Ok(())
}
#[allow(dead_code)]
pub fn get_transcript_path(_session_id: &str) -> PathBuf {
PathBuf::new()
}
#[allow(dead_code)]
pub fn get_session_state_path(_session_id: &str) -> PathBuf {
PathBuf::new()
}