chore(go): enforce package coverage gates

This commit is contained in:
Micheal Wilkinson
2026-03-21 11:14:40 +00:00
parent 692e205a63
commit ad5196420e
4 changed files with 177 additions and 3 deletions

View File

@@ -1,12 +1,17 @@
package main
import (
"io"
"os"
"git.hrafn.xyz/aether/gosick/internal/homesick/cli"
)
func main() {
exitCode := cli.Run(os.Args[1:], os.Stdout, os.Stderr)
exitCode := run(os.Args[1:], os.Stdout, os.Stderr)
os.Exit(exitCode)
}
func run(args []string, stdout io.Writer, stderr io.Writer) int {
return cli.Run(args, stdout, stderr)
}