1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#[macro_use]
pub mod macros;

mod color;
pub mod random;

// ------------------------

pub struct Provider {
    pub color: color::Provider,
}

impl Provider {
    pub fn new() -> Self {
        Provider {
            color: color::Provider::new(),
        }
    }
}

impl Default for Provider {
    fn default() -> Self {
        Self::new()
    }
}