1
0
Fork 0
forked from AbleOS/ableos
ableos_time/facepalm/src/lib.rs

20 lines
415 B
Rust
Raw Normal View History

#![no_std]
use log::*;
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
#[cfg(debug_assertions)]
pub const RELEASE_TYPE: &str = "debug";
#[cfg(not(debug_assertions))]
pub const RELEASE_TYPE: &str = "release";
pub fn start_facepalm() {
info!("facepalm 🤦 launched!");
info!("facepalm 🤦 version: {}", VERSION);
info!("facepalm 🤦 {} mode", RELEASE_TYPE);
2022-02-04 06:16:06 +00:00
// Drop into a debug shell
}