Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
sandreae committed Jun 25, 2024
1 parent a16d3ef commit 2798270
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aquadoggo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ mod test_utils;
#[cfg(test)]
mod tests;

use log::{info, log_enabled, Level};

pub use crate::api::{ConfigFile, LockFile};
pub use crate::config::{AllowList, Configuration};
pub use crate::network::NetworkConfiguration;
use log::{info, log_enabled, Level};
pub use node::Node;

/// Init env_logger before the test suite runs to handle logging outputs.
Expand Down

0 comments on commit 2798270

Please sign in to comment.