(&self, _data: String)
| 153 | |
| 154 | #[tracing::instrument(level = "debug", skip(self, _data))] |
| 155 | pub fn register_oauth(&self, _data: String) -> Result<MainCommandResponse> { |
| 156 | // TODO: Implement oauth registration |
| 157 | Ok(MainCommandResponse::RegisterOAuth(false)) |
| 158 | } |
| 159 | |
| 160 | #[tracing::instrument(level = "debug", skip(self, data))] |
| 161 | pub fn open_external(&self, data: String) -> Result<MainCommandResponse> { |