feta/cmd/feta/main.go

18 lines
330 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
import "git.eeqj.de/sneak/feta/process"
2019-11-05 02:57:48 +00:00
2019-11-05 23:32:09 +00:00
// these are filled in at link-time by the build scripts
2019-12-19 13:20:23 +00:00
// Version is the git version of the app
2019-11-05 23:32:09 +00:00
var Version string
2019-12-19 13:20:23 +00:00
// Buildarch contains the architecture it is compiled for
2019-11-05 23:32:09 +00:00
var Buildarch string
2019-10-24 10:38:16 +00:00
2019-11-05 23:32:09 +00:00
func main() {
2019-12-19 14:24:26 +00:00
os.Exit(process.CLIEntry(Version, Buildarch))
2019-10-24 10:38:16 +00:00
}