Initial Ginie project structure

This commit is contained in:
2025-11-17 21:55:31 +01:00
commit 8e9c9a09b4
10 changed files with 73 additions and 0 deletions

17
cmd/ginie/main.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import (
"fmt"
"os"
"gitea.home.musaberdem.de/musabe24/ginie/internal/version"
)
func main() {
if len(os.Args) > 1 && (os.Args[1] == "--version" || os.Args[1] == "-v") {
fmt.Println("ginie version", version.Version)
return
}
fmt.Println("Ginie Git Native Installer Engine")
}