updater_nonwindows.go 178 B

123456789101112
  1. //go:build !windows
  2. package lifecycle
  3. import (
  4. "context"
  5. "errors"
  6. )
  7. func DoUpgrade(cancel context.CancelFunc, done chan int) error {
  8. return errors.New("not implemented")
  9. }