chore: suppress dead_code warning on exit code constants

This commit is contained in:
2026-03-20 21:33:00 +00:00
parent b92c6ad18c
commit b6daf608af

View File

@@ -4,6 +4,7 @@
//! which maps them to exit codes and log output. //! which maps them to exit codes and log output.
/// Exit codes for the sunbeam CLI. /// Exit codes for the sunbeam CLI.
#[allow(dead_code)]
pub mod exit { pub mod exit {
pub const SUCCESS: i32 = 0; pub const SUCCESS: i32 = 0;
pub const GENERAL: i32 = 1; pub const GENERAL: i32 = 1;