veta_core/lib.rs
1//! Veta core library - shared types, traits, and business logic.
2//!
3//! This crate contains no I/O and can be compiled for any target.
4
5mod dateparse;
6mod db;
7mod error;
8mod note;
9mod service;
10
11pub use dateparse::parse_human_date;
12pub use db::Database;
13pub use error::Error;
14pub use note::{CreateNote, Note, NoteQuery, NoteSummary, TagCount, UpdateNote};
15pub use service::VetaService;