From bc4aa8242cfb3f64890c362a32c3e8394050edee Mon Sep 17 00:00:00 2001 From: Joshua Coles Date: Thu, 31 Oct 2024 12:10:57 +0000 Subject: [PATCH] Fix silly error --- src/ingestion/routes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ingestion/routes.rs b/src/ingestion/routes.rs index 10fa40a..d0b1008 100644 --- a/src/ingestion/routes.rs +++ b/src/ingestion/routes.rs @@ -52,7 +52,7 @@ async fn extract_csv_and_account_name(mut multipart: Multipart) -> Result<(Optio } #[derive(serde::Deserialize, Debug, Clone)] -struct ShortcutBody { +pub struct ShortcutBody { pub body: String, pub account_name: String, }