aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/script-utils/logfmt/tail.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/script-utils/logfmt/tail.go')
-rw-r--r--client/go/script-utils/logfmt/tail.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/client/go/script-utils/logfmt/tail.go b/client/go/script-utils/logfmt/tail.go
new file mode 100644
index 00000000000..75e7cbb0693
--- /dev/null
+++ b/client/go/script-utils/logfmt/tail.go
@@ -0,0 +1,13 @@
+// Copyright Yahoo. 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
+}