feta/cmd/feta/main.go

14 lines
217 B
Go
Raw Normal View History

2019-10-24 10:38:16 +00:00
package main
2019-11-02 06:56:17 +00:00
import "os"
2019-10-24 10:38:16 +00:00
2019-11-05 02:57:48 +00:00
import "github.com/sneak/feta"
2019-11-05 23:32:09 +00:00
// these are filled in at link-time by the build scripts
var Version string
var Buildarch string
2019-10-24 10:38:16 +00:00
2019-11-05 23:32:09 +00:00
func main() {
os.Exit(feta.CLIEntry(Version, Buildarch))
2019-10-24 10:38:16 +00:00
}