This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
syncthing-arm/cmd/syncthing/openurl_windows.go
T
2014-05-02 08:57:34 +02:00

10 lines
144 B
Go

// +build windows
package main
import "os/exec"
func openURL(url string) error {
return exec.Command("cmd.exe", "/C", "start "+url).Run()
}