19 lines
363 B
Go
19 lines
363 B
Go
package main
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
|
|
"git.hrafn.xyz/aether/gosick/internal/homesick/cli"
|
|
)
|
|
|
|
func main() {
|
|
_ = os.Setenv("GIT_TERMINAL_PROMPT", "0")
|
|
exitCode := run(os.Args[1:], os.Stdin, os.Stdout, os.Stderr)
|
|
os.Exit(exitCode)
|
|
}
|
|
|
|
func run(args []string, stdin io.Reader, stdout io.Writer, stderr io.Writer) int {
|
|
return cli.Run(args, stdin, stdout, stderr)
|
|
}
|