refactor!: archive kadabra

This commit is contained in:
2025-10-19 15:28:48 +02:00
parent 0dc5c307af
commit 3845b40aa3
9 changed files with 57 additions and 991 deletions

View File

@ -1,23 +0,0 @@
// Package main provides the command-line entrypoint.
package main
import (
"coopcloud.tech/abra/cli/updater"
)
// Version is the current version of Kadabra.
var Version string
// Commit is the current git commit of Kadabra.
var Commit string
func main() {
if Version == "" {
Version = "dev"
}
if Commit == "" {
Commit = " "
}
updater.RunApp(Version, Commit)
}