updater_nonwindows.go 178 Bytes
Newer Older
1
2
3
4
5
6
//go:build !windows

package lifecycle

import (
	"context"
Michael Yang's avatar
lint  
Michael Yang committed
7
	"errors"
8
9
10
)

func DoUpgrade(cancel context.CancelFunc, done chan int) error {
Michael Yang's avatar
lint  
Michael Yang committed
11
	return errors.New("not implemented")
12
}