Skip to content

Commit

Permalink
reorder lib use
Browse files Browse the repository at this point in the history
  • Loading branch information
Esgrove committed Oct 2, 2024
1 parent 022bdfa commit f916ba0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ pub mod errors;
mod value;
mod vault;

// Expose `Vault` and `Value` so they can be used as if they were defined here
pub use crate::value::Value;
pub use crate::vault::Vault;

use std::fmt;

use aws_config::SdkConfig;
Expand All @@ -17,6 +13,10 @@ use serde::{Deserialize, Serialize};

use crate::errors::VaultError;

// Expose `Vault` and `Value` so they can be used as if they were defined here
pub use crate::value::Value;
pub use crate::vault::Vault;

#[derive(Debug, Clone)]
pub struct CloudFormationParams {
bucket_name: String,
Expand Down

0 comments on commit f916ba0

Please sign in to comment.