aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/admin/vespa-wrapper/logfmt/tail.go
blob: f07c14796688c41fcc3f05eea42297f2d6754e38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// vespa logfmt command
// Author: mpolden

package logfmt

type Line struct {
	Text string
}

type Tail interface {
	Lines() chan Line
}