From 0ab5a6c66457cc5cb1f73098ed43a47466a042f0 Mon Sep 17 00:00:00 2001 From: Jonas Kruckenberg Date: Thu, 9 Feb 2023 12:53:07 +0100 Subject: [PATCH] export JsonValue --- plugins/store/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/store/src/lib.rs b/plugins/store/src/lib.rs index 70767c7e..26588b71 100644 --- a/plugins/store/src/lib.rs +++ b/plugins/store/src/lib.rs @@ -5,7 +5,7 @@ pub use error::Error; use log::warn; use serde::Serialize; -use serde_json::Value as JsonValue; +pub use serde_json::Value as JsonValue; use std::{ collections::HashMap, path::{Path, PathBuf},