11 lines
166 B
Go
11 lines
166 B
Go
package updater
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
func DoUpgrade(cancel context.CancelFunc, done chan int) error {
|
|
return fmt.Errorf("DoUpgrade not yet implemented")
|
|
}
|