mirror of
https://github.com/rm-dr/daisy
synced 2025-07-01 14:43:30 -07:00
Added wasm implementations for formattedtext
This commit is contained in:
12
src/formattedtext/mod.rs
Normal file
12
src/formattedtext/mod.rs
Normal file
@ -0,0 +1,12 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user