mirror of
https://github.com/strongdm/comply
synced 2024-11-05 07:25:26 +00:00
16 lines
239 B
Go
16 lines
239 B
Go
// +build darwin
|
|
|
|
package open
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func open(input string) *exec.Cmd {
|
|
return exec.Command("open", input)
|
|
}
|
|
|
|
func openWith(input string, appName string) *exec.Cmd {
|
|
return exec.Command("open", "-a", appName, input)
|
|
}
|