aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/src/command/client/wrapped.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/turtle/src/command/client/wrapped.rs')
-rw-r--r--crates/turtle/src/command/client/wrapped.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/crates/turtle/src/command/client/wrapped.rs b/crates/turtle/src/command/client/wrapped.rs
index 5e41657e..d502d3ec 100644
--- a/crates/turtle/src/command/client/wrapped.rs
+++ b/crates/turtle/src/command/client/wrapped.rs
@@ -3,7 +3,8 @@ use eyre::Result;
use std::collections::{HashMap, HashSet};
use time::{Date, Duration, Month, OffsetDateTime, Time};
-use crate::atuin_client::{database::Database, settings::Settings, theme::Theme};
+use crate::atuin_client::database::ClientSqlite;
+use crate::atuin_client::{settings::Settings, theme::Theme};
use crate::atuin_history::stats::{Stats, compute};
@@ -268,7 +269,7 @@ fn print_fun_facts(wrapped_stats: &WrappedStats, stats: &Stats, year: i32) {
pub(crate) async fn run(
year: Option<i32>,
- db: &impl Database,
+ db: &ClientSqlite,
settings: &Settings,
theme: &Theme,
) -> Result<()> {