12 lines
178 B
Go
12 lines
178 B
Go
//go:build !windows
|
|
|
|
package lifecycle
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
)
|
|
|
|
func DoUpgrade(cancel context.CancelFunc, done chan int) error {
|
|
return errors.New("not implemented")
|
|
}
|