Files
kleiax 904d14b64c
CI / test (push) Canceled after 0s
Initial commit
2026-09-12 22:22:17 +02:00

16 lines
250 B
Go

package main
import (
"context"
"fmt"
"os"
)
func main() {
app := newApplication(os.Stdin, os.Stdout, os.Stderr)
if err := app.run(context.Background(), os.Args[1:]); err != nil {
fmt.Fprintf(os.Stderr, "error: %v\n", err)
os.Exit(1)
}
}