mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-19 20:53:27 +02:00
11 lines
169 B
Go
11 lines
169 B
Go
package browser
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
func openBrowser(url string) error {
|
|
r := strings.NewReplacer("&", "^&")
|
|
return runCmd("cmd", "/c", "start", r.Replace(url))
|
|
}
|