glowpub 0.5.0

A glowfic to epub converter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(not(target_arch = "wasm32"))]
mod cli;

#[cfg(not(target_arch = "wasm32"))]
#[tokio::main]
async fn main() {
    cli::main().await;
}

#[cfg(target_arch = "wasm32")]
fn main() {
    println!("Not implemented for wasm32");
}