mirror of
https://github.com/ollama/ollama.git
synced 2025-12-07 21:22:05 +01:00
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")
|
|
}
|