diff options
| author | Ray Kohler <ataraxia937@ataraxia937.xyz> | 2025-08-11 18:03:40 -0400 |
|---|---|---|
| committer | Ellie Huxtable <ellie@elliehuxtable.com> | 2025-09-10 12:57:43 -0700 |
| commit | 3b8702790b6c74786cdd0cc04c2d89962c1117cb (patch) | |
| tree | c1a779a46445fd9ca7c295a75cbf63ce965d7a7c /crates/atuin-server | |
| parent | fix: `cargo update` and changes needed to accomodate it (diff) | |
| download | atuin-3b8702790b6c74786cdd0cc04c2d89962c1117cb.zip | |
fix: run `cargo fmt`
Diffstat (limited to 'crates/atuin-server')
| -rw-r--r-- | crates/atuin-server/src/handlers/record.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/crates/atuin-server/src/handlers/record.rs b/crates/atuin-server/src/handlers/record.rs index 59a10109..410c54bd 100644 --- a/crates/atuin-server/src/handlers/record.rs +++ b/crates/atuin-server/src/handlers/record.rs @@ -8,9 +8,7 @@ use crate::router::UserAuth; use atuin_common::record::{EncryptedData, Record}; #[instrument(skip_all, fields(user.id = user.id))] -pub async fn post( - UserAuth(user): UserAuth, -) -> Result<(), ErrorResponseStatus<'static>> { +pub async fn post(UserAuth(user): UserAuth) -> Result<(), ErrorResponseStatus<'static>> { // anyone who has actually used the old record store (a very small number) will see this error // upon trying to sync. // 1. The status endpoint will say that the server has nothing |
