forked from joejulian/gio
22cd88df9f
The "ui" is redundant and stutters. Signed-off-by: Elias Naur <mail@eliasnaur.com>
15 lines
210 B
Go
15 lines
210 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
package app
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
)
|
|
|
|
func init() {
|
|
// Work around golang.org/issue/33384
|
|
signal.Notify(make(chan os.Signal), syscall.SIGPIPE)
|
|
}
|