mirror of
https://github.com/crazy-max/diun.git
synced 2025-03-15 20:04:47 +00:00
12 lines
124 B
Go
12 lines
124 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package utl
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const (
|
|
SIGTERM = unix.SIGTERM
|
|
)
|