mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-27 14:40:18 +01:00
cb6e5cb0c7
* use dep for vendoring * lets encrypt * moved web to transfer.sh-web repo * single command install * added first tests
9 lines
226 B
Go
9 lines
226 B
Go
// +build appengine
|
|
|
|
package isatty
|
|
|
|
// IsTerminal returns true if the file descriptor is terminal which
|
|
// is always false on on appengine classic which is a sandboxed PaaS.
|
|
func IsTerminal(fd uintptr) bool {
|
|
return false
|
|
}
|