(self)
| 54 | |
| 55 | impl Args { |
| 56 | pub async fn execute(self) -> Result<(), String> { |
| 57 | let client = CascadeApiClient::new(format!("http://{}", self.server)); |
| 58 | self.command.execute(client).await |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | //----------- LogLevel --------------------------------------------------------- |