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