blocky/querylog/none_writer.go

17 lines
226 B
Go

package querylog
type NoneWriter struct {
}
func NewNoneWriter() *NoneWriter {
return &NoneWriter{}
}
func (d *NoneWriter) Write(entry *LogEntry) {
// Nothing to do
}
func (d *NoneWriter) CleanUp() {
// Nothing to do
}