1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-18 21:17:59 +00:00
rolens/internal/open_file/open_windows.go

10 lines
126 B
Go
Raw Normal View History

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