mirror of
https://github.com/junegunn/fzf
synced 2024-11-01 03:20:42 +00:00
14 lines
195 B
Go
14 lines
195 B
Go
package main
|
|
|
|
import (
|
|
"github.com/junegunn/fzf/src"
|
|
"github.com/junegunn/fzf/src/protector"
|
|
)
|
|
|
|
var revision string
|
|
|
|
func main() {
|
|
protector.Protect()
|
|
fzf.Run(fzf.ParseOptions(), revision)
|
|
}
|