(gsettings: &GlobalSettings, _opts: ServerStopOpts)
| 237 | } |
| 238 | |
| 239 | async fn stop_server(gsettings: &GlobalSettings, _opts: ServerStopOpts) -> anyhow::Result<()> { |
| 240 | let mut session = get_client_session(gsettings.server_directory()).await?; |
| 241 | client_stop_server(session.connection()).await?; |
| 242 | Ok(()) |
| 243 | } |
| 244 | |
| 245 | async fn command_server_info( |
| 246 | gsettings: &GlobalSettings, |
no test coverage detected