kanban-persistence 0.3.3

Persistence layer for the kanban project management tool with progressive saving and multi-instance support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod conflict;
pub mod migration;
pub mod serialization;
pub mod store;
pub mod traits;
pub mod watch;

pub use conflict::*;
pub use migration::*;
pub use serialization::*;
pub use store::*;
pub use traits::*;
pub use watch::*;