kanban-domain 0.3.0

Domain models and business logic for the kanban project management tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Board import/export functionality.
//!
//! Provides serialization and deserialization of board data for backup,
//! migration, and sharing purposes.

pub mod exporter;
pub mod importer;
pub mod models;

pub use exporter::BoardExporter;
pub use importer::{BoardImporter, ImportedEntities};
pub use models::{AllBoardsExport, BoardExport};