Skip to content

Commit

Permalink
wip: add hardcoded version string
Browse files Browse the repository at this point in the history
  • Loading branch information
coroiu committed Oct 21, 2024
1 parent c5a7419 commit b834a94
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/bitwarden-wasm-internal/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ impl BitwardenClient {
msg
}

pub fn version(&self) -> String {
"PM-12989-create-process-for-qa-to-build-client-with-particular-sdk-version".to_owned()
}

pub fn throw(&self, msg: String) -> Result<(), crate::error::GenericError> {
Err(crate::error::GenericError(msg))
}
Expand Down

0 comments on commit b834a94

Please sign in to comment.