293dd2e848
* Add vendor dir so builds dont require dep * Pin specific version go-eth version
18 lines
492 B
Go
18 lines
492 B
Go
// Copyright (c) 2016 Arista Networks, Inc.
|
|
// Use of this source code is governed by the Apache License 2.0
|
|
// that can be found in the COPYING file.
|
|
|
|
package kafka
|
|
|
|
import (
|
|
"flag"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
// Addresses is the flag for kafka's comma-separated addresses
|
|
var Addresses = flag.String("kafkaaddrs", "localhost:9092", "kafka's comma-separated addresses")
|
|
|
|
// Topic is the flag for kafka's topic
|
|
var Topic = flag.String("kafkatopic", filepath.Base(os.Args[0]), "kafka's topic")
|