don't double serialize string in event

This commit is contained in:
Thilo Behnke
2022-06-26 13:42:39 +02:00
parent 19ed978fe1
commit 080c754eeb

View File

@@ -8,6 +8,7 @@ pub mod event {
pub struct Event {
pub topic: String,
pub key: Option<String>,
#[serde(skip_serializing)]
pub msg: String,
}