notegraf 0.1.1

Core library for building a graph-oriented notebook
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Notegraf: a graph-oriented notebook.
#[macro_use]
#[allow(unused_imports)]
extern crate tracing;

pub mod errors;
pub mod note;
pub mod notemetadata;
pub mod notestore;
pub mod notetype;
pub mod url;

pub use note::{Note, NoteID, NoteLocator, NoteSerializable, Revision};
pub use notestore::{InMemoryStore, NoteStore, PostgreSQLStore, PostgreSQLStoreBuilder};
pub use notetype::{MarkdownNote, NoteType, PlainNote};