From 29af2937e97ffcdedcb9c8f93a30884a4e6569e6 Mon Sep 17 00:00:00 2001 From: Nipunn Koorapati Date: Mon, 19 Aug 2024 16:24:42 -0700 Subject: [PATCH] This FileStorageMetadata struct appears unused (#29003) Seems to have been replaced with a Json struct. GitOrigin-RevId: 78dfd40f5111f5b0e0bf3c3d5c8cdc3fe9b50927 --- crates/file_storage/src/lib.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/crates/file_storage/src/lib.rs b/crates/file_storage/src/lib.rs index e09fb52d..dcbf658a 100644 --- a/crates/file_storage/src/lib.rs +++ b/crates/file_storage/src/lib.rs @@ -14,7 +14,6 @@ use headers::{ ContentRange, ContentType, }; -use model::file_storage::types::StorageUuid; use storage::Storage; mod core; @@ -48,10 +47,3 @@ pub struct TransactionalFileStorage { storage: Arc, convex_origin: ConvexOrigin, } - -pub struct FileMetadata { - pub storage_id: StorageUuid, - pub sha256: Sha256Digest, - pub size: i64, - pub content_type: Option, -}