dip/vendor/github.com/gobuffalo/logger/outable.go
2020-01-26 16:38:57 +01:00

9 lines
152 B
Go

package logger
import "io"
// Outable interface for loggers that allow setting the output writer
type Outable interface {
SetOutput(out io.Writer)
}