feat: Add Store avro

This commit is contained in:
ldrogo27
2026-04-07 13:31:28 +02:00
parent 28a8f1c8c1
commit db1e6c8eec
2 changed files with 3 additions and 3 deletions

View File

@@ -163,7 +163,7 @@ async fn main() -> anyhow::Result<()> {
};
match args.topic {
Topic::Third => {
Topic::Store => {
let ok = producer
.produce(
"store-key-77777".to_string(),
@@ -172,10 +172,10 @@ async fn main() -> anyhow::Result<()> {
)
.await;
if ok {
println!("✅ Sent third {:?}", payload);
println!("✅ Sent store {:?}", payload);
}
}
Topic::Store => {
Topic::Third => {
let csv_path = args
.csv
.as_deref()