mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-03 09:20:24 +01:00
cb6e5cb0c7
* use dep for vendoring * lets encrypt * moved web to transfer.sh-web repo * single command install * added first tests
15 lines
205 B
Go
15 lines
205 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/mattn/go-isatty"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
if isatty.IsTerminal(int(os.Stdout.Fd())) {
|
|
fmt.Println("Is Terminal")
|
|
} else {
|
|
fmt.Println("Is Not Terminal")
|
|
}
|
|
}
|