mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-10 19:26:46 +00:00
copy config.yaml to docker image enable external usage of dashboard package gofmt fix comment use packr for assets add gobuffalo/packr dependency add dependencies fix pointer issues add output-file option
9 lines
152 B
Go
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)
|
|
}
|