augr_core/lib.rs
1#[cfg(feature = "flame_it")]
2#[macro_use]
3extern crate flamer;
4
5pub mod repository;
6pub mod store;
7pub mod timesheet;
8
9pub use crate::repository::Repository;
10pub use crate::store::{
11 meta::Meta,
12 patch::{Patch, PatchRef},
13 Store,
14};
15pub use crate::timesheet::{Event, Timesheet};
16
17pub type EventRef = String;
18pub type Tag = String;