mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 00:15:43 +03:00
15 lines
227 B
Go
15 lines
227 B
Go
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
|
|
|
|
package command
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func setupWindowNotification(ch chan<- os.Signal) {
|
|
signal.Notify(ch, unix.SIGWINCH)
|
|
}
|