diff options
Diffstat (limited to '')
| -rw-r--r-- | crates/atuin-daemon/src/history.rs | 1 | ||||
| -rw-r--r-- | crates/atuin-daemon/src/history/mod.rs | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/crates/atuin-daemon/src/history.rs b/crates/atuin-daemon/src/history.rs deleted file mode 100644 index 57f5b2cf..00000000 --- a/crates/atuin-daemon/src/history.rs +++ /dev/null @@ -1 +0,0 @@ -tonic::include_proto!("history"); diff --git a/crates/atuin-daemon/src/history/mod.rs b/crates/atuin-daemon/src/history/mod.rs new file mode 100644 index 00000000..b71853df --- /dev/null +++ b/crates/atuin-daemon/src/history/mod.rs @@ -0,0 +1,6 @@ +//! History module for the daemon gRPC history service. +//! +//! This module contains the proto-generated types for the history gRPC service. + +// Include the generated proto code +tonic::include_proto!("history"); |
