Skip to content

Commit

Permalink
improv: better code organization
Browse files Browse the repository at this point in the history
  • Loading branch information
edfloreshz committed Oct 23, 2024
1 parent af37918 commit d1cde96
Show file tree
Hide file tree
Showing 16 changed files with 18 additions and 19 deletions.
21 changes: 2 additions & 19 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,19 +1,2 @@
pub mod action;
pub mod application;
pub mod clone;
pub mod constants;
pub mod editor;

mod error;
pub use error::*;

mod status;
pub use status::*;

pub mod config;
pub mod fork;
pub mod git_pull;
pub mod host;
pub mod project;
pub mod settings;
pub mod workspace;
pub mod shared;
pub use shared::*;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 16 additions & 0 deletions src/shared/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
pub mod action;
pub mod application;
pub mod clone;
pub mod config;
pub mod constants;
pub mod editor;
pub mod error;
pub mod fork;
pub mod git_pull;
pub mod host;
pub mod project;
pub mod settings;
pub mod status;
pub mod workspace;
pub use error::{error, DevmodeError, Error};
pub use status::{report, DevmodeStatus};
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d1cde96

Please sign in to comment.