summaryrefslogtreecommitdiff
path: root/cmd/internal/hexai-action/main.go
blob: 50e677404a634d48ef2692df52fff9b2cbd9cbc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
	}
}