Skip to main content

code_moniker_workspace/notes/
mod.rs

1mod model;
2mod resolve;
3mod store;
4
5pub use model::{
6	Note, NoteAuthor, NoteId, NoteKind, NoteResolution, NoteStatus, ResolvedNote, TransitionError,
7};
8pub use resolve::resolve_notes;
9pub use store::{
10	NoteChanges, NotesDocument, NotesStore, NotesWatchTarget, WorkspaceNotes, notes_dir,
11	notes_path, notes_root_for_paths, notes_watch_targets_for_paths,
12};