kanban-core 0.3.2

Core traits, errors, and result types for the kanban project management tool
Documentation
1
2
3
use crate::error::KanbanError;

pub type KanbanResult<T> = Result<T, KanbanError>;