1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2024-11-22 10:25:48 +01:00
rolens/internal/ui/open_windows.go

10 lines
119 B
Go

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