This commit is contained in:
naudachu
2026-01-28 16:24:21 +05:00
commit e10b389661
38 changed files with 5909 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package main
import (
"fmt"
"os"
"github.com/user/aevs/internal/cli"
"github.com/user/aevs/internal/errors"
)
func main() {
if err := cli.Execute(); err != nil {
fmt.Fprintf(os.Stderr, "Error: %v\n", err)
os.Exit(errors.GetExitCode(err))
}
}