File: white.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 (12 lines) | stat: -rw-r--r-- 104 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
// +build appengine

package log

import (
	"io"
	"os"
)

func output() io.Writer {
	return os.Stdout
}