r_utils/
lib.rs

1#[cfg(feature = "cli")]
2pub mod cli {
3    pub mod interface;
4    pub mod schemas;
5    pub mod sync;
6}
7
8#[cfg(feature = "s3")]
9pub mod s3;
10#[cfg(feature = "s3")]
11pub use s3::{
12    create_s3_client, get_object_content, get_objects, s3_client, upload_object,
13};
14
15#[cfg(feature = "mfa")]
16pub mod mfa;
17#[cfg(feature = "mfa")]
18pub use mfa::get_totp;
19
20pub fn hello() {
21    println!("hello, this is r-utils 🫡")
22}