term_do 0.7.0

This is a small terminal tool for tracking tasks and also my first project! It is simple, but hope it is as helpful for other people as it is for me.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Copy, Clone, PartialEq)]
pub enum FocusedLayout {
    None,
    GroupsLayout,
    TasksLayout,
    ControlsLayout
}

#[derive(Copy, Clone, PartialEq)]
pub enum InputMode {
    Navigate,
    Add,
    Edit
}