mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-19 05:27:57 +00:00
10 lines
126 B
Go
10 lines
126 B
Go
|
//go:build windows
|
||
|
|
||
|
package open_file
|
||
|
|
||
|
import "os/exec"
|
||
|
|
||
|
func reveal(fname string) {
|
||
|
exec.Command("explorer", fname).Run()
|
||
|
}
|