mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-13 13:48:40 +02:00
12 lines
110 B
Go
12 lines
110 B
Go
package testlib
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/caarlos0/log"
|
|
)
|
|
|
|
func init() {
|
|
log.Log = log.New(io.Discard)
|
|
}
|