File: log_windows.go

package info (click to toggle)
golang-github-araddon-gou 0.0~git20180509.7db4be5-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 160 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
// +build windows

package gou

// Determine is this process is running in a Terminal or not?
func IsTerminal() bool {
	return false // TODO Needs correct implementation on Windows
}