1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-10-01 21:01:58 +02:00
ntfy/cmd/publish_unix.go
2022-06-20 10:56:45 -04:00

8 lines
132 B
Go

package cmd
import "syscall"
func processExists(pid int) bool {
err := syscall.Kill(pid, syscall.Signal(0))
return err == nil
}