package teapotcaller import ( "log/slog" "os/exec" ) func Run() error { // TODO: call teapot cmd := exec.Command("joint-teapot", "--help") output, err := cmd.CombinedOutput() if err != nil { slog.Error("running git command:", "err", err) return err } slog.Info("joint-teapot run", "output", string(output)) return nil }