pub type AgentSessionResult<T> = Result<T, AppError>;
Result type for agent session store operations.
pub enum AgentSessionResult<T> { Ok(T), Err(AppError), }
Contains the success value
Contains the error value