updater_nonwindows.go 178 Bytes
Newer Older
mashun1's avatar
v1  
mashun1 committed
1
2
3
4
5
6
//go:build !windows

package lifecycle

import (
	"context"
xuxzh1's avatar
init  
xuxzh1 committed
7
	"errors"
mashun1's avatar
v1  
mashun1 committed
8
9
10
)

func DoUpgrade(cancel context.CancelFunc, done chan int) error {
xuxzh1's avatar
init  
xuxzh1 committed
11
	return errors.New("not implemented")
mashun1's avatar
v1  
mashun1 committed
12
}