diff options
author | rtkay123 <dev@kanjala.com> | 2025-08-16 14:13:14 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-08-16 14:13:14 +0200 |
commit | 70a148dd86be9c8ccc56e1fce232262475aa3158 (patch) | |
tree | 51214ab651215ef94a8554039cc953042b043cf6 /lib/warden-core/src/configuration | |
parent | bf4a2b8b0a04f0cb682db84a835fe7c57d8526bc (diff) | |
download | warden-70a148dd86be9c8ccc56e1fce232262475aa3158.tar.bz2 warden-70a148dd86be9c8ccc56e1fce232262475aa3158.zip |
feat(aggregator): write evaluation
Diffstat (limited to 'lib/warden-core/src/configuration')
-rw-r--r-- | lib/warden-core/src/configuration/conv.rs | 7 |
1 files changed, 5 insertions, 2 deletions
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<S>(operator: &i32, s: S) -> Result<S::Ok, S::Error> where |