24 lines
647 B
Rust
24 lines
647 B
Rust
|
#![cfg_attr(not(feature = "toml"), allow(dead_code))]
|
||
|
#![cfg_attr(not(feature = "toml"), allow(unused_imports))]
|
||
|
#[macro_use]
|
||
|
extern crate pretty_env_logger;
|
||
|
mod register;
|
||
|
|
||
|
#[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"
|
||
|
);
|
||
|
}
|