//! security模块 use crate::error::Result; use tracing::info; pub struct Security { } impl Security { pub fn new() -> Result { info!("Creating security"); Ok(Self {}) } }