From 04f290dbeeee8a6fcbc70fed253a968336bcb2ab Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 6 Sep 2025 13:19:01 +0300 Subject: more tests --- cmd/internal/hexai-action/main.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 cmd/internal/hexai-action/main.go (limited to 'cmd/internal') diff --git a/cmd/internal/hexai-action/main.go b/cmd/internal/hexai-action/main.go new file mode 100644 index 0000000..50e6774 --- /dev/null +++ b/cmd/internal/hexai-action/main.go @@ -0,0 +1,16 @@ +package main + +import ( + "context" + "fmt" + "os" + + "codeberg.org/snonux/hexai/internal/hexaiaction" +) + +func main() { + if err := hexaiaction.Run(context.Background(), os.Stdin, os.Stdout, os.Stderr); err != nil { + fmt.Fprintln(os.Stderr, err) + os.Exit(1) + } +} -- cgit v1.2.3