summaryrefslogtreecommitdiff
path: root/fs/filereader.go
blob: 5a08e2750d468d3ea4e7fc92a1795dccdaa7e35c (plain)
1
2
3
4
5
6
7
8
9
package fs

// FileReader is the interface used on the dtail server to read/cat/grep/mapr... a file.
type FileReader interface {
	Start(lines chan<- LineRead, regex string) error
	FilePath() string
	Retry() bool
	Stop()
}