Initial sow-tools import

This commit is contained in:
2026-04-02 17:19:23 +02:00
commit b7f188779a
1370 changed files with 7357 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package main
import (
"fmt"
"os"
"gitea.westgate.pw/ShadowsOverWestgate/sow-tools/internal/app"
)
func main() {
code, err := app.Run(os.Args[1:])
if err != nil {
fmt.Fprintln(os.Stderr, err)
}
os.Exit(code)
}