mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-12 11:38:11 +00:00
848a9a08ac
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
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
|
|
)
|