updater_darwin.go 166 B

12345678910
  1. package updater
  2. import (
  3. "context"
  4. "fmt"
  5. )
  6. func DoUpgrade(cancel context.CancelFunc, done chan int) error {
  7. return fmt.Errorf("DoUpgrade not yet implemented")
  8. }