mod.rs 168 B

123456
  1. use std::sync::RwLock;
  2. use crate::command::CommandLineArgs;
  3. /// 启动时的命令行参数
  4. pub static CMD_ARGS: RwLock<Option<CommandLineArgs>> = RwLock::new(None);