kode_bridge/
errors.rs

1pub type AnyError = Box<dyn std::error::Error + Send + Sync>;
2pub type AnyResult<T> = Result<T, AnyError>;