fantasy_util/
lib.rs

1pub mod time;
2pub mod bit;
3
4#[cfg(feature = "asyncio")]
5pub mod asyncio;
6
7/// # Fantasy Util
8/// ## Jelipo custom util lib.
9/// Include *time*,*bit* tool.
10///
11
12#[cfg(test)]
13mod tests {
14    #[test]
15    fn it_works() {
16        assert_eq!(2 + 2, 4);
17    }
18}