terminal_appengine.go 311 B

1234567891011121314
  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. // +build appengine
  6. package term
  7. // IsTty always returns false on AppEngine.
  8. func IsTty(fd uintptr) bool {
  9. return false
  10. }