pace_core 0.19.0

pace-core - library to support timetracking on the command line
Documentation
1
2
3
4
5
6
7
8
9
use std::collections::BinaryHeap;

use crate::domain::task::Task;

/// Inbox entity
#[derive(Debug, Default)]
pub struct Inbox {
    items: BinaryHeap<Task>,
}