Skip to content

Commit

Permalink
Implement close_lsp_channels
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgranhao committed May 15, 2024
1 parent 01b906a commit 9df89d5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mock/breez-sdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1116,6 +1116,11 @@ impl BreezServices {
pub async fn generate_diagnostic_data(&self) -> SdkResult<String> {
Ok("Dummy diagnostics".to_string())
}

pub async fn close_lsp_channels(&self) -> SdkResult<Vec<String>> {
// No need to implement this in the mock
Ok(Vec::new())
}
}

pub async fn parse(input: &str) -> Result<InputType> {
Expand Down

0 comments on commit 9df89d5

Please sign in to comment.