granger 0.1.0

An opinionated Kanban Board for the solo developer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[derive(Debug)]
pub struct Board {
    pub id: usize,
    pub name: String,
    pub location: String,
    pub ticket_count: usize,
}

impl Board {
    pub fn new(name: &String, location: &String) -> Board {
        Board {
            id: 0,
            name: name.to_string(),
            location: location.to_string(),
            ticket_count: 0,
        }
    }
}