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 17, 2024
1 parent 8aea2e9 commit d634cdd
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()
}

Check warning on line 54 in crates/bitwarden-wasm-internal/src/client.rs

View check run for this annotation

Codecov / codecov/patch

crates/bitwarden-wasm-internal/src/client.rs#L52-L54

Added lines #L52 - L54 were not covered by tests

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

0 comments on commit d634cdd

Please sign in to comment.