Skip to content

Commit 39edab5

Browse files
committed
refactor: inline factory
1 parent b52f186 commit 39edab5

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

src-tauri/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use std::path::PathBuf;
1111
use serde::{Deserialize, Serialize};
1212

1313
pub use uncode_config::UncodeConfig;
14-
use uncode_core::domain::file_entry::FileEntry;
14+
use uncode_core::file_entry::FileEntry;
1515

1616
use crate::workspace_config::WorkspaceConfig;
1717

uncode/uncode-core/src/domain/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ pub use story_model::StoryModel;
33

44
pub mod architecture_model;
55
pub mod story_model;
6-
pub mod file_entry;

uncode/uncode-core/src/domain/file_entry.rs renamed to uncode/uncode-core/src/file_entry.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,4 @@ impl FileEntry {
131131
Ok(())
132132
}
133133
}
134+

uncode/uncode-core/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
extern crate serde_json;
22

33
pub use domain::story_model::StoryModel;
4+
45
pub mod domain;
6+
pub mod file_entry;

0 commit comments

Comments
 (0)