File: color.go

package info (click to toggle)
golang-github-labstack-gommon 0.2.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 172 kB
  • sloc: makefile: 2
file content (13 lines) | stat: -rw-r--r-- 154 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build !appengine

package log

import (
	"io"

	"github.com/mattn/go-colorable"
)

func output() io.Writer {
	return colorable.NewColorableStdout()
}