mirror of
https://github.com/charmbracelet/crush.git
synced 2026-05-30 18:47:33 +00:00
11 lines
127 B
Go
11 lines
127 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package cmd
|
|
|
|
import "os"
|
|
|
|
func addSignals(sigs []os.Signal) []os.Signal {
|
|
return sigs
|
|
}
|