mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-04 13:47:36 +03:00
ntfy publish --pid $PID ...
This commit is contained in:
parent
30c2a67869
commit
1226a7b70c
3 changed files with 39 additions and 0 deletions
10
cmd/publish_windows.go
Normal file
10
cmd/publish_windows.go
Normal file
|
@ -0,0 +1,10 @@
|
|||
package cmd
|
||||
|
||||
import (
|
||||
"os"
|
||||
)
|
||||
|
||||
func processExists(pid int) bool {
|
||||
_, err := os.FindProcess(pid)
|
||||
return err == nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue