Skip to content

Commit

Permalink
audit: export LogEntries
Browse files Browse the repository at this point in the history
  • Loading branch information
baloo committed Jun 25, 2023
1 parent a051e5c commit 3e8cdbd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/audit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
pub(crate) mod commands;
mod error;

pub use self::error::{Error, ErrorKind};
pub use self::{
commands::{LogDigest, LogEntries, LogEntry},
error::{Error, ErrorKind},
};

use crate::command;
use serde::{de, ser, Deserialize, Serialize};
Expand Down
1 change: 1 addition & 0 deletions src/audit/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ mod get_option;
mod set_log_index;
mod set_option;

pub use self::get_log_entries::{LogDigest, LogEntries, LogEntry};
pub(crate) use self::{get_log_entries::*, get_option::*, set_log_index::*, set_option::*};

0 comments on commit 3e8cdbd

Please sign in to comment.