1 2 3 4 5 6 7 8 9
use super::*; #[async_trait] impl crate::traits::HealthCheckStore for SqliteStateStore { async fn health_check(&self) -> anyhow::Result<()> { sqlx::query("SELECT 1").execute(&self.pool).await?; Ok(()) } }