scythe/
lib.rs

1//! TODO: write this documentation
2
3#[cfg(feature = "paths")]
4pub use scythe_paths as paths;
5
6#[cfg(feature = "platform")]
7pub use scythe_platform as platform;
8
9#[cfg(test)]
10mod tests {
11    #[test]
12    fn it_works() {
13        assert_eq!(2 + 2, 4);
14    }
15}