tuwunel_admin/query/globals/
current_count.rs1use tuwunel_core::Result;
2
3use crate::admin_command;
4
5#[admin_command]
6pub(super) async fn globals_current_count(&self) -> Result {
7 self.write_timed_query(async { self.services.globals.current_count() })
8 .await
9}