util.go 441 B

1234567891011121314151617181920
  1. // +build !linux
  2. // +build !windows
  3. /*
  4. * Public Domain Software
  5. *
  6. * I (Matthias Ladkau) am the author of the source code in this file.
  7. * I have placed the source code in this file in the public domain.
  8. *
  9. * For further information see: http://creativecommons.org/publicdomain/zero/1.0/
  10. */
  11. package getch
  12. /*
  13. attachReader attaches a character reader on Windows.
  14. */
  15. func attachReader() (getch, error) {
  16. return nil, ErrNotImplemented
  17. }