mesh_portal_versions/
lib.rs1
2#[macro_use]
3extern crate lazy_static;
4
5#[macro_use]
6extern crate strum_macros;
7
8
9
10use std::collections::HashMap;
11use std::sync::Arc;
12
13use serde::{Deserialize, Serialize};
14
15pub mod version;
16pub mod error;
17
18#[cfg(test)]
19mod tests {
20 #[test]
21 fn it_works() {
22 }
23}