snapshot current state before gitea sync

This commit is contained in:
2026-02-18 10:50:25 +01:00
commit 23e3e4c160
11 changed files with 661 additions and 0 deletions
BIN
View File
Binary file not shown.
+12
View File
@@ -0,0 +1,12 @@
package main
import (
"os"
"uberspace-cli/internal/cli"
)
func main() {
c := cli.New()
os.Exit(c.Run(os.Args[1:]))
}