mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-05 05:04:04 -08:00
10 lines
151 B
Go
10 lines
151 B
Go
|
// +build appengine !linux,!freebsd,!darwin,!dragonfly,!netbsd,!openbsd
|
||
|
|
||
|
package kingpin
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
func guessWidth(w io.Writer) int {
|
||
|
return 80
|
||
|
}
|