1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-04-28 13:48:49 +08:00
Drasko DRASKOVIC 1d74046154 Add Glide and vendoring
Signed-off-by: Drasko DRASKOVIC <drasko.draskovic@gmail.com>
2016-10-09 20:48:34 +02:00
..
2016-10-09 20:48:34 +02:00
2016-10-09 20:48:34 +02:00
2016-10-09 20:48:34 +02:00
2016-10-09 20:48:34 +02:00
2016-10-09 20:48:34 +02:00
2016-10-09 20:48:34 +02:00
2016-10-09 20:48:34 +02:00
2016-10-09 20:48:34 +02:00
2016-10-09 20:48:34 +02:00

go-isatty

isatty for golang

Usage

package main

import (
	"fmt"
	"github.com/mattn/go-isatty"
	"os"
)

func main() {
	if isatty.IsTerminal(os.Stdout.Fd()) {
		fmt.Println("Is Terminal")
	} else {
		fmt.Println("Is Not Terminal")
	}
}

Installation

$ go get github.com/mattn/go-isatty

License

MIT

Author

Yasuhiro Matsumoto (a.k.a mattn)