package hook import ( "context" "github.com/urfave/cli/v3" "tangled.org/core/log" ) func Command() *cli.Command { return &cli.Command{ Name: "hook", Usage: "run git hooks", Action: Run, Flags: []cli.Flag{ // TODO: }, } } func Run(ctx context.Context, cmd *cli.Command) error { l := log.FromContext(ctx) l = log.SubLogger(l, cmd.Name) ctx = log.IntoContext(ctx, l) panic("unimplemented") }