sat-rs/satrs-mib/src/lib.rs

9 lines
159 B
Rust
Raw Permalink Normal View History

2022-11-27 22:30:38 +01:00
#![no_std]
#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(any(feature = "std", test))]
extern crate std;
2022-11-27 22:13:15 +01:00
pub use satrs_mib_codegen::*;
2022-11-27 22:05:42 +01:00
pub mod res_code;