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