mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-18 21:17:59 +00:00
10 lines
119 B
Go
10 lines
119 B
Go
//go:build windows
|
|
|
|
package ui
|
|
|
|
import "os/exec"
|
|
|
|
func reveal(fname string) {
|
|
exec.Command("explorer", fname).Run()
|
|
}
|