feat: Add Store avro
This commit is contained in:
@@ -163,7 +163,7 @@ async fn main() -> anyhow::Result<()> {
|
|||||||
};
|
};
|
||||||
|
|
||||||
match args.topic {
|
match args.topic {
|
||||||
Topic::Third => {
|
Topic::Store => {
|
||||||
let ok = producer
|
let ok = producer
|
||||||
.produce(
|
.produce(
|
||||||
"store-key-77777".to_string(),
|
"store-key-77777".to_string(),
|
||||||
@@ -172,10 +172,10 @@ async fn main() -> anyhow::Result<()> {
|
|||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
if ok {
|
if ok {
|
||||||
println!("✅ Sent third {:?}", payload);
|
println!("✅ Sent store {:?}", payload);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Topic::Store => {
|
Topic::Third => {
|
||||||
let csv_path = args
|
let csv_path = args
|
||||||
.csv
|
.csv
|
||||||
.as_deref()
|
.as_deref()
|
||||||
|
|||||||
Reference in New Issue
Block a user