Add cmd/ and main.go

This commit is contained in:
Ettore Di Giacinto
2019-10-29 17:36:48 +01:00
committed by Ettore Di Giacinto
parent c3197d70fc
commit 8ca6051a04
3 changed files with 139 additions and 0 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import "github.com/mudler/luet/cmd"
var (
version string
)
func main() {
cmd.Execute()
}