gh-ost/go/binlog/mysqlbinlog_reader.go

13 lines
237 B
Go
Raw Normal View History

2016-03-22 14:12:51 +00:00
/*
Copyright 2016 GitHub Inc.
*/
package binlog
type MySQLBinlogReader struct {
}
func (this *MySQLBinlogReader) ReadEntries(logFile string, startPos uint, endPos uint) (entries [](*BinlogEntry), err error) {
return entries, err
}