5 lines
145 B
Rust
5 lines
145 B
Rust
|
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||
|
lazy_static! {
|
||
|
pub(crate) static ref USER_AGENT: String = format!("gitache/{}", VERSION);
|
||
|
}
|