chore(go): scaffold module and add failing link tests

This commit is contained in:
Micheal Wilkinson
2026-03-19 13:44:02 +00:00
parent 005209703e
commit 41584dec6a
12 changed files with 529 additions and 2 deletions

12
cmd/homesick/main.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"os"
"git.hrafn.xyz/aether/gosick/internal/homesick/cli"
)
func main() {
exitCode := cli.Run(os.Args[1:], os.Stdout, os.Stderr)
os.Exit(exitCode)
}