This commit is contained in:
pavel 2026-05-15 17:40:09 +02:00
commit 07522043b4
16 changed files with 870 additions and 38 deletions

14
cmd/boxctl/main.go Normal file
View file

@ -0,0 +1,14 @@
package main
import (
"log"
"os"
"box/internal/app"
)
func main() {
if err := app.RunCLI(os.Args[1:]); err != nil {
log.Fatal(err)
}
}