ffsend/src/app.rs
2018-03-08 19:26:11 +01:00

14 lines
448 B
Rust

/// The application name.
pub const APP_NAME: &'static str = "ffsend";
/// The application version.
pub const APP_VERSION: &'static str = "0.1";
/// The application author.
pub const APP_AUTHOR: &'static str = "Tim Visee <timvisee@gmail.com>";
/// Application about information.
pub const APP_ABOUT: &'static str = "A simple Firefox Send CLI client.";
/// The default Send host to use.
pub const SEND_DEF_HOST: &'static str = "localhost:8080";