1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-19 05:27:57 +00:00
rolens/internal/open_file/open_windows.go
2023-02-18 15:42:51 +01:00

10 lines
126 B
Go

//go:build windows
package open_file
import "os/exec"
func reveal(fname string) {
exec.Command("explorer", fname).Run()
}