summaryrefslogtreecommitdiffstats
path: root/examples/upload_photo.rs
blob: b761a2464865d03c8d1a27031b07af80162f1791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![cfg_attr(not(feature = "toml"), allow(dead_code))]
#![cfg_attr(not(feature = "toml"), allow(unused_imports))]
mod register;

use register::MastodonClient;
use std::error;

#[cfg(feature = "toml")]
fn main() -> Result<(), Box<error::Error>> {
    let mastodon = register::get_mastodon_data()?;
    let input = register::read_line("Enter the path to the photo you'd like to post: ")?;

    mastodon.media(input.into())?;

    Ok(())
}

#[cfg(not(feature = "toml"))]
fn main() {
    println!("examples require the `toml` feature, run this command for this example:\n\ncargo run --example upload_photo --features toml\n");
}