mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 01:21:15 +01:00
11 lines
118 B
Go
11 lines
118 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func processExists(pid int) bool {
|
||
|
_, err := os.FindProcess(pid)
|
||
|
return err == nil
|
||
|
}
|