You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fzf/main.go

18 lines
304 B
Go

10 years ago
package main
import (
"github.com/junegunn/fzf/src"
"github.com/junegunn/fzf/src/protector"
)
10 years ago
4 years ago
var version string
var revision string
10 years ago
func main() {
if len(version) == 0 {
panic("Invalid build: version information missing")
}
protector.Protect()
4 years ago
fzf.Run(fzf.ParseOptions(), version, revision)
10 years ago
}