1use open_kioku_errors::{OkError, Result}; 2 3pub fn ensure_configured() -> Result<()> { 4 Err(OkError::Unsupported( 5 "Qdrant integration is optional and not configured".into(), 6 )) 7}