mirror of
https://github.com/stashapp/stash.git
synced 2025-12-14 12:25:23 +01:00
8 lines
152 B
Go
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)
|
|
}
|