Skip to main content

espforge_common/
lib.rs

1// espforge_common/src/lib.rs
2#![cfg_attr(not(feature = "std"), no_std)]
3
4#[cfg(feature = "std")]
5pub type ConfigString = String;
6
7#[cfg(not(feature = "std"))]
8pub type ConfigString = &'static str;
9
10pub mod components;