updater_nonwindows.go 189 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
//go:build !windows

package lifecycle

import (
	"context"
	"fmt"
)

func DoUpgrade(cancel context.CancelFunc, done chan int) error {
	return fmt.Errorf("DoUpgrade not yet implemented")
}