kanban-tui 0.6.0

Terminal user interface for the kanban project management tool
Documentation
1
2
3
4
5
6
7
8
use std::collections::HashSet;
use uuid::Uuid;

#[derive(Default)]
pub struct MultiSelectState {
    pub selected_cards: HashSet<Uuid>,
    pub selection_mode_active: bool,
}