mirror of
https://github.com/rm-dr/daisy
synced 2025-04-04 04:18:02 -07:00
12 lines
250 B
Rust
12 lines
250 B
Rust
mod formattedtext;
|
|
pub use formattedtext::FormattedText;
|
|
|
|
|
|
// Select write implementation by target system
|
|
cfg_if::cfg_if! {
|
|
if #[cfg(target_family = "unix")] {
|
|
mod unix_backend;
|
|
} else if #[cfg(target_arch = "wasm32")] {
|
|
mod wasm_backend;
|
|
}
|
|
} |