18 lines
286 B
Go
18 lines
286 B
Go
package main
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
|
|
"git.hrafn.xyz/aether/gosick/internal/homesick/cli"
|
|
)
|
|
|
|
func main() {
|
|
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)
|
|
}
|