From f162d641a71b95f7febab0c04aba7d64182df38b Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 7 Apr 2025 14:17:19 +0100 Subject: feat: support storing, syncing and executing scripts (#2644) * feat: add atuin-scripts crate * initial * define record types * wip * wip * mvp * add show command, make stdin work * rewrite execution to use shebang and script file ALWAYS * rename show -> get, allow fetching script only * fmt * clippy * a bunch of fixes to the edits * update lock * variables * fmt * clippy * pr feedback * fmt --- crates/atuin-scripts/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 crates/atuin-scripts/src/lib.rs (limited to 'crates/atuin-scripts/src/lib.rs') diff --git a/crates/atuin-scripts/src/lib.rs b/crates/atuin-scripts/src/lib.rs new file mode 100644 index 00000000..c79c7089 --- /dev/null +++ b/crates/atuin-scripts/src/lib.rs @@ -0,0 +1,4 @@ +pub mod database; +pub mod execution; +pub mod settings; +pub mod store; -- cgit v1.3.1