Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions crates/frilvault-core/src/app/frilvault.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ use std::path::{Path, PathBuf};

use crate::{
FrilVaultResult,
note::NoteService,
note::{NoteRepository, NoteService},
runtime::VaultContext,
storage::NoteRepository,
workspace::{PathResolver, WorkspaceIndexRepository, WorkspaceRepository, WorkspaceService},
};

Expand Down
1 change: 0 additions & 1 deletion crates/frilvault-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ mod error;
mod note;
mod parser;
mod runtime;
mod storage;
mod workspace;

pub use app::FrilVault;
Expand Down
2 changes: 2 additions & 0 deletions crates/frilvault-core/src/note/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
mod dto;
mod entity;
mod note_repository;
mod note_service;

pub use dto::*;
pub use entity::*;
pub use note_repository::*;
pub use note_service::*;
3 changes: 1 addition & 2 deletions crates/frilvault-core/src/runtime/vault_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ use std::path::{Path, PathBuf};

use crate::{
FrilVaultResult,
note::{NoteFile, NoteFileRecord},
note::{NoteFile, NoteFileRecord, NoteRepository},
runtime::NoteCache,
storage::NoteRepository,
workspace::{WorkspaceIndex, WorkspaceIndexRepository},
};

Expand Down
3 changes: 0 additions & 3 deletions crates/frilvault-core/src/storage/mod.rs

This file was deleted.

3 changes: 1 addition & 2 deletions crates/frilvault-core/src/tests/helper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ use std::{
};

use crate::{
note::NoteService,
note::{NoteRepository, NoteService},
runtime::VaultContext,
storage::NoteRepository,
workspace::{PathResolver, WorkspaceIndexRepository, WorkspaceRepository, WorkspaceService},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::{fs, path::Path};

use crate::{
FrilVaultResult, RepairSuggestion,
storage::NoteRepository,
note::NoteRepository,
workspace::{FileMove, IndexDiff, IndexedFile, PathResolver, WorkspaceIndex},
};

Expand Down