ctf 0.1.0

Toolkit to help CTF teams synchronize during events.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod model;

fn open() {
    let u = model::User { id: 42, handle: String::from("alxbl"), access: 999, assigned: None};
    println!("hello world.");
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        open();
        assert_eq!(2 + 2, 4);
    }
}