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