feta/cmd/feta/main.go

18 lines
318 B
Go

package main
import "os"
import "github.com/sneak/feta"
// these are filled in at link-time by the build scripts
// Version is the git version of the app
var Version string
// Buildarch contains the architecture it is compiled for
var Buildarch string
func main() {
os.Exit(feta.CLIEntry(Version, Buildarch))
}