File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed
crates/bitwarden-wasm-internal/src Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -106,26 +106,6 @@ extern "C" {
106
106
async fn remove ( this : & JSCipherStore , id : String ) ;
107
107
}
108
108
109
- /*
110
- #[async_trait::async_trait]
111
- impl DataStore<Cipher> for ChannelJSCipherStore {
112
- async fn get(&self, id: String) -> Option<Cipher> {
113
- ChannelJSCipherStore::get(self, id).await
114
- }
115
-
116
- async fn list(&self) -> Vec<Cipher> {
117
- ChannelJSCipherStore::list(self).await
118
- }
119
-
120
- async fn set(&self, id: String, value: Cipher) {
121
- ChannelJSCipherStore::set(self, id, value).await;
122
- }
123
-
124
- async fn remove(&self, id: String) {
125
- ChannelJSCipherStore::remove(self, id).await;
126
- }
127
- }*/
128
-
129
109
#[ wasm_bindgen]
130
110
impl StoreClient {
131
111
pub async fn print_the_ciphers ( & self ) -> String {
You can’t perform that action at this time.
0 commit comments