stash/vendor/github.com/gobuffalo/logger/outable.go
2019-02-09 04:32:50 -08:00

8 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)
}