butterfly-common 2.0.0

Common utilities for the butterfly-osm toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Common utilities for the butterfly-osm toolkit

pub mod error;

pub use error::{Error, Result};

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        // Basic smoke test to ensure the library compiles
        let _result = 2 + 2;
        assert_eq!(_result, 4);
    }
}