code format

This commit is contained in:
Ulric Qin 2022-07-19 19:24:06 +08:00
parent 2ca1982036
commit d28c0f8734
1 changed files with 2 additions and 3 deletions

View File

@ -21,9 +21,8 @@ var metricReplacer = strings.NewReplacer("-", "_", ".", "_", " ", "_", "'", "_",
type InputReader struct {
inputName string
input inputs.Input
quitChan chan struct {
}
queue chan *types.Sample
quitChan chan struct{}
queue chan *types.Sample
}
func NewInputReader(inputName string, in inputs.Input) *InputReader {