gh-ost/go/binlog/binlog_reader.go
2016-03-22 15:12:51 +01:00

13 lines
208 B
Go

/*
Copyright 2016 GitHub Inc.
*/
package binlog
type BinlogEntry struct {
}
type BinlogReader interface {
ReadEntries(logFile string, startPos uint, endPos uint) (entries [](*BinlogEntry), err error)
}