xref: /DragonOS/tools/debugging/logmonitor/src/constant/mod.rs (revision 7b32f5080f42bcbf7d2421013f3ea53c776a063c)
1*7b32f508SLoGin use std::sync::RwLock;
2*7b32f508SLoGin 
3*7b32f508SLoGin use crate::command::CommandLineArgs;
4*7b32f508SLoGin 
5*7b32f508SLoGin /// 启动时的命令行参数
6*7b32f508SLoGin pub static CMD_ARGS: RwLock<Option<CommandLineArgs>> = RwLock::new(None);
7