maimai 0.1.1

Markup-based meme generator
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() -> maimai::Result<()> {
    let schema = schemars::schema_for!(maimai::partial::PartialMeme);

    println!(
        "{}",
        serde_json::to_string_pretty(&schema).map_err(maimai::Error::other)?
    );

    Ok(())
}