#![allow(dead_code)]
pub fn is_running_with_bun() -> bool {
false
}
pub fn is_in_bundled_mode() -> bool {
false
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_is_running_with_bun() {
assert_eq!(is_running_with_bun(), false);
}
#[test]
fn test_is_in_bundled_mode() {
assert_eq!(is_in_bundled_mode(), false);
}
}