mirror of
https://github.com/Hopiu/micro.git
synced 2026-04-15 20:01:04 +00:00
11 lines
241 B
Go
11 lines
241 B
Go
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd
|
|
|
|
package main
|
|
|
|
import "errors"
|
|
|
|
const TermEmuSupported = false
|
|
|
|
func RunTermEmulator(input string, wait bool, getOutput bool) error {
|
|
return errors.New("Unsupported operating system")
|
|
}
|