0
0
mirror of https://github.com/crazy-max/diun.git synced 2024-09-11 07:18:18 +00:00
crazy-max_diun/pkg/utl/sig_windows.go
CrazyMax 848a9a08ac
Move syscall to golang.org/x/sys (#525)
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
2021-12-26 03:59:19 +01:00

13 lines
128 B
Go

//go:build windows
// +build windows
package utl
import (
"golang.org/x/sys/windows"
)
const (
SIGTERM = windows.SIGTERM
)