Skip to content

Commit

Permalink
Limit visibility (#402)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo authored Feb 1, 2025
1 parent 8c800af commit e9c6b01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/archives/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use crate::prelude::*;
use crate::{filesystem, Log};
use std::path::Path;

/// An archive is a compressed file containing an application.
/// An archive is a compressed file containing an executable and other files needed to run a particular application.
pub(crate) trait Archive {
/// extracts all files from the given archive data to the given location on disk
fn extract_all(&self, target_dir: &Path, log: Log) -> Result<()>;
Expand Down
2 changes: 1 addition & 1 deletion src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mod arguments;
mod command;
mod exit;

pub(crate) use app_version::AppVersion;
use app_version::AppVersion;
pub(crate) use arguments::parse;
#[cfg(test)]
pub(crate) use arguments::Arguments;
Expand Down

0 comments on commit e9c6b01

Please sign in to comment.