1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-20 22:48:02 +00:00

Moved UI methods to their own struct

This commit is contained in:
2023-02-21 17:47:21 +01:00
parent 5b1f410a50
commit 44c94d0d72
14 changed files with 124 additions and 74 deletions

View File

@ -0,0 +1,9 @@
//go:build darwin
package ui
import "os/exec"
func reveal(fname string) {
exec.Command("open", "--reveal", fname).Run()
}