10 lines
143 B
Go
10 lines
143 B
Go
//go:build windows
|
|
|
|
package main
|
|
|
|
import "os/exec"
|
|
|
|
func runNotification(command string) {
|
|
_ = exec.Command("cmd.exe", "/C", command).Run()
|
|
}
|