actually commit my changes this time...

This commit is contained in:
Ashley Mensah
2025-11-05 17:11:23 +01:00
parent 030ddae51e
commit 8aa1b23a22
6 changed files with 28 additions and 1 deletions

View File

@@ -5,6 +5,11 @@ package updatemanager
import "context"
func (u *UpdateManager) triggerUpdate(ctx context.Context, targetVersion string) error {
// Use test function if set (for testing purposes)
if u.updateFunc != nil {
return u.updateFunc(ctx, targetVersion)
}
// TODO: Implement
return nil
}