This commit is contained in:
2020-09-20 15:42:39 -07:00
parent 37aa21b57e
commit 80465e3f1f
9 changed files with 897 additions and 0 deletions

19
cmd/formless/main.go Normal file
View File

@@ -0,0 +1,19 @@
package main
import (
"os"
"git.eeqj.de/sneak/formless/process"
)
// 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(process.CLIEntry(Version, Buildarch))
}