mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-18 13:07:58 +00:00
10 lines
126 B
Go
10 lines
126 B
Go
//go:build darwin
|
|
|
|
package ui
|
|
|
|
import "os/exec"
|
|
|
|
func reveal(fname string) {
|
|
exec.Command("open", "--reveal", fname).Run()
|
|
}
|