8 lines
124 B
Go
8 lines
124 B
Go
//go:build linux
|
|
|
|
package main
|
|
|
|
func openWithDefaultApp(target string) error {
|
|
return runOpenCommand("xdg-open", target)
|
|
}
|