tuwunel_admin/server/
shutdown.rs1use tuwunel_core::{Result, warn};
2
3use crate::admin_command;
4
5#[admin_command]
6pub(super) async fn shutdown(&self) -> Result {
7 warn!("shutdown command");
8 self.services.server.shutdown()?;
9
10 self.write_str("Shutting down server...").await
11}