mirror of
https://github.com/timvisee/ffsend.git
synced 2025-10-06 02:29:57 +02:00
14 lines
448 B
Rust
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";
|