builds!
This commit is contained in:
19
cmd/formless/main.go
Normal file
19
cmd/formless/main.go
Normal 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))
|
||||
}
|
||||
Reference in New Issue
Block a user