1use tuwunel_core::Result; 2 3use crate::admin_command; 4 5#[inline(never)] 6#[rustfmt::skip] 7#[admin_command] 8pub(super) async fn tester(&self) -> Result { 9 10 self.write_str("Ok").await 11}