diff --git a/native/native_rust_library/RustSecureStore.cpp b/native/native_rust_library/RustSecureStore.cpp index b12857de2..472e8fe9f 100644 --- a/native/native_rust_library/RustSecureStore.cpp +++ b/native/native_rust_library/RustSecureStore.cpp @@ -1,16 +1,15 @@ #include "RustSecureStore.h" -#include "../cpp/CommonCpp/NativeModules/InternalModules/GlobalDBSingleton.h" #include "../cpp/CommonCpp/Tools/CommSecureStore.h" #include "lib.rs.h" namespace comm { void secureStoreSet(rust::Str key, rust::String value) { CommSecureStore::set(std::string(key), std::string(value)); } rust::String secureStoreGet(rust::Str key) { return rust::String(CommSecureStore::get(std::string(key)).value()); } } // namespace comm