summaryrefslogtreecommitdiffstats
path: root/atuin-client/src/history.rs
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-04-17 14:06:05 +0100
committerGitHub <noreply@github.com>2024-04-17 14:06:05 +0100
commitcb19925011d889c513e1bbedc446e399597e38a0 (patch)
tree7ad9e42013e15957805f2cdf563ce8b3e0c770f5 /atuin-client/src/history.rs
parentfcc0dc1bd576cd7b608e191c3a71e863d14b2d1f (diff)
feat(gui): work on home page, sort state (#1956)
1. Start on a home page, can sort onboarding/etc from there 2. Introduce zustand for state management. It's nice! Did a production build and clicked around for a while. Memory usage seems nice and chill.
Diffstat (limited to 'atuin-client/src/history.rs')
-rw-r--r--atuin-client/src/history.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/atuin-client/src/history.rs b/atuin-client/src/history.rs
index bc74aebd..1b590e88 100644
--- a/atuin-client/src/history.rs
+++ b/atuin-client/src/history.rs
@@ -18,7 +18,7 @@ mod builder;
pub mod store;
const HISTORY_VERSION: &str = "v0";
-const HISTORY_TAG: &str = "history";
+pub const HISTORY_TAG: &str = "history";
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
pub struct HistoryId(pub String);