29e90cc13b
This focuses on Windows first, but coudl be used for Mac and possibly linux in the future.
12 lines
189 B
Go
12 lines
189 B
Go
//go:build !windows
|
|
|
|
package lifecycle
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
func DoUpgrade(cancel context.CancelFunc, done chan int) error {
|
|
return fmt.Errorf("DoUpgrade not yet implemented")
|
|
}
|