1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-07-20 12:07:29 +02:00
ntfy/cmd/publish_windows.go

11 lines
118 B
Go
Raw Normal View History

2022-06-20 16:56:45 +02:00
package cmd
import (
"os"
)
func processExists(pid int) bool {
_, err := os.FindProcess(pid)
return err == nil
}