chore: change Hello, world! to What's up world? to allow me to cut a release

This commit is contained in:
J / Jacob Babich
2024-10-05 03:01:41 -04:00
parent ae7de503a4
commit 972129536f

View File

@@ -1,4 +1,4 @@
pub fn main() {
#[cfg(feature = "tracing")]
tracing::info!("Hello, world!");
tracing::info!("What's up, world?");
}