github.com/pslzym/go-ethereum@v1.8.17-0.20180926104442-4b6824e07b1b/log/term/terminal_appengine.go (about) 1 // Based on ssh/terminal: 2 // Copyright 2013 The Go Authors. All rights reserved. 3 // Use of this source code is governed by a BSD-style 4 // license that can be found in the LICENSE file. 5 6 // +build appengine 7 8 package term 9 10 // IsTty always returns false on AppEngine. 11 func IsTty(fd uintptr) bool { 12 return false 13 }