8 lines
95 B
Go
Executable File
8 lines
95 B
Go
Executable File
package dlg
|
|
|
|
import "os/exec"
|
|
|
|
func openURL(url string) {
|
|
exec.Command(`open`, url).Start()
|
|
}
|