Add Windows platform integration scaffolding
This commit is contained in:
committed by
Brandon McGinty
parent
fab4fd50d2
commit
9c487c2586
@@ -0,0 +1,9 @@
|
||||
//go:build windows
|
||||
|
||||
package main
|
||||
|
||||
import "os/exec"
|
||||
|
||||
func runNotification(command string) {
|
||||
_ = exec.Command("cmd.exe", "/C", command).Run()
|
||||
}
|
||||
Reference in New Issue
Block a user