mirror of
https://github.com/rm-dr/daisy
synced 2025-02-22 15:09:25 -08:00
12 lines
216 B
Rust
12 lines
216 B
Rust
|
|
cfg_if::cfg_if! {
|
|
if #[cfg(target_family = "unix")] {
|
|
mod unix;
|
|
pub use unix::main as main_e;
|
|
} else {
|
|
pub fn main_e () -> Result<(), std::io::Error> {
|
|
println!("Not yet implemented.");
|
|
Ok(())
|
|
}
|
|
}
|
|
} |