refactor: rename updater package to update

This commit is contained in:
Mathis Maquenne
2026-08-05 11:46:34 +02:00
parent 5c95554855
commit 88319ebb3c
7 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ import (
"slices"
"github.com/mathismqn/godeez/internal/buildinfo"
"github.com/mathismqn/godeez/internal/updater"
"github.com/mathismqn/godeez/internal/update"
"github.com/spf13/cobra"
"golang.org/x/term"
)
@@ -19,7 +19,7 @@ func Execute(ctx context.Context) error {
var notice <-chan string
if wantsUpdateNotice(root) {
notice = updater.StartCheck(ctx)
notice = update.StartCheck(ctx)
}
err := root.ExecuteContext(ctx)