"examples/nas/oneshot/naive/README_zh_CN.md" did not exist on "abc221589c65d75b494407c60a81ca87c3020463"
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")
}