Skip to content

Commit

Permalink
refactor helpers into config dir
Browse files Browse the repository at this point in the history
  • Loading branch information
organizedgrime committed Jun 5, 2024
1 parent 8e1637e commit 7aebb6e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 0 additions & 2 deletions src/cli/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/// Commands to run
pub mod commands;
/// Convenience functions for working in user space
mod helpers;
/// Command Trait
mod runnable_command;
/// Export
Expand Down
5 changes: 1 addition & 4 deletions src/on_disk/config/global.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ use crate::{
ConfigStateError, NativeError,
};
use async_trait::async_trait;
use banyanfs::{
api::{platform, ApiClient},
codec::crypto::SigningKey,
};
use banyanfs::{api::ApiClient, codec::crypto::SigningKey};
use serde::{Deserialize, Serialize};
use std::{collections::HashMap, fmt::Display, path::PathBuf, sync::Arc};
use tracing::info;
Expand Down
File renamed without changes.
2 changes: 2 additions & 0 deletions src/on_disk/config/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// this represents data that should go in ~/.config
mod global;
/// Convenience functions for CLI ops
mod helpers;
pub use global::*;

0 comments on commit 7aebb6e

Please sign in to comment.