Skip to content

Commit

Permalink
Remove obsolete constant.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpfs committed Nov 27, 2023
1 parent 2fcc515 commit d8b0b45
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions workspace/sdk/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,6 @@ mod folders {
/// Directory to store temporary files.
pub const TEMP_DIR: &str = "temp";

/// Directory to store deleted files.
#[deprecated]
pub const TRASH_DIR: &str = "trash";

/// Directory to store log files.
pub const LOGS_DIR: &str = "logs";

Expand All @@ -155,13 +151,14 @@ mod folders {
pub const PREFERENCES_FILE: &str = "preferences";
}

mod archive {
/// File names.
mod files {
/// Manifest file for archives.
pub const ARCHIVE_MANIFEST: &str = "sos-manifest.json";
}

pub use archive::*;
pub use extensions::*;
pub use files::*;
pub use folders::*;
pub use identity::*;
pub use mime::*;
Expand Down

0 comments on commit d8b0b45

Please sign in to comment.