#include "platform/secure_storage.hpp" namespace platform { void SecureStorage::Save(std::string const & key, std::string const & value) { // TODO: implement @igrechuhin } bool SecureStorage::Load(std::string const & key, std::string & value) { // TODO: implement @igrechuhin return false; } void SecureStorage::Remove(std::string const & key) { // TODO: implement @igrechuhin } } // namespace platform