hop-cli 0.2.61

Interact with Hop in your terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub const ARCH: &str = std::env::consts::ARCH;
pub const PLATFORM: &str = std::env::consts::OS;
pub const VERSION: &str = env!("CARGO_PKG_VERSION");

#[cfg(not(windows))]
pub const EXEC_NAME: &str = "hop";
#[cfg(windows)]
pub const EXEC_NAME: &str = "hop.exe";
pub const LEAP_PROJECT: &str = "project_MzA0MDgwOTQ2MDEwODQ5NzQ";

#[cfg(windows)]
pub const DEFAULT_EDITOR: &str = "notepad.exe";
#[cfg(not(windows))]
pub const DEFAULT_EDITOR: &str = "vi";