1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-18 13:07:58 +00:00
rolens/internal/ui/open_windows.go

10 lines
119 B
Go
Raw Normal View History

2023-02-11 20:57:52 +00:00
//go:build windows
2023-02-21 16:47:21 +00:00
package ui
2023-02-11 20:57:52 +00:00
import "os/exec"
func reveal(fname string) {
exec.Command("explorer", fname).Run()
}