butterfly_common/
lib.rs

1//! Common utilities for the butterfly-osm toolkit
2
3pub mod error;
4
5pub use error::{Error, Result};
6
7#[cfg(test)]
8mod tests {
9    #[test]
10    fn it_works() {
11        // Basic smoke test to ensure the library compiles
12        let _result = 2 + 2;
13        assert_eq!(_result, 4);
14    }
15}