mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
9 lines
183 B
Go
9 lines
183 B
Go
// +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
|
|
}
|