mirror of
https://github.com/zyedidia/micro.git
synced 2026-03-10 06:40:24 +09:00
12 lines
290 B
Go
12 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")
|
|
}
|