mirror of
https://github.com/Hopiu/micro.git
synced 2026-04-22 07:04:45 +00:00
11 lines
290 B
Go
11 lines
290 B
Go
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd_amd64
|
|
|
|
package action
|
|
|
|
import "errors"
|
|
|
|
const TermEmuSupported = false
|
|
|
|
func RunTermEmulator(input string, wait bool, getOutput bool, callback string, userargs []interface{}) error {
|
|
return errors.New("Unsupported operating system")
|
|
}
|