yagcdn/backend/src/statics.rs

6 lines
222 B
Rust
Raw Normal View History

2019-07-24 17:54:00 +02:00
const VERSION: &str = env!("CARGO_PKG_VERSION");
2019-07-27 16:15:11 +02:00
pub(crate) const FAVICON: &[u8] = include_bytes!("../static/favicon32.png");
2019-07-24 17:54:00 +02:00
lazy_static! {
pub(crate) static ref USER_AGENT: String = format!("gitache/{}", VERSION);
}