shell_scene/util/
mod.rs

1pub mod deps;
2pub mod fsx;
3pub mod net;
4pub mod proc;
5
6// tiny stderr helpers (kept local)
7pub fn eprintln_err(msg: &str) {
8    eprintln!("ERROR: {msg}");
9}
10pub fn eprintln_warn(msg: &str) {
11    eprintln!("WARN: {msg}");
12}