1use tuwunel_core::Result; 2 3use crate::admin_command; 4 5#[admin_command] 6pub(super) async fn trim_memory(&self) -> Result { 7 tuwunel_core::alloc::trim(None)?; 8 9 writeln!(self, "done").await 10}