From 70a148dd86be9c8ccc56e1fce232262475aa3158 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sat, 16 Aug 2025 14:13:14 +0200 Subject: feat(aggregator): write evaluation --- lib/warden-core/src/configuration/conv.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'lib/warden-core') diff --git a/lib/warden-core/src/configuration/conv.rs b/lib/warden-core/src/configuration/conv.rs index fe4acf3..cbb1e88 100644 --- a/lib/warden-core/src/configuration/conv.rs +++ b/lib/warden-core/src/configuration/conv.rs @@ -1,4 +1,7 @@ -use crate::{configuration::typology::Operator, google::protobuf::{value, ListValue, NullValue, Struct, Value}}; +use crate::{ + configuration::typology::Operator, + google::protobuf::{ListValue, NullValue, Struct, Value, value}, +}; #[derive(Debug)] /// Generic JSON value @@ -109,8 +112,8 @@ impl serde::Serialize for GenericParameter { } pub(crate) mod operator_serde { - use serde::{self, Deserialize, Deserializer, Serializer}; use super::Operator; + use serde::{self, Deserialize, Deserializer, Serializer}; pub fn serialize(operator: &i32, s: S) -> Result where -- cgit v1.2.3