forked from third-party-mirrors/ollama
8 lines
139 B
Go
8 lines
139 B
Go
package server
|
|
|
|
import "errors"
|
|
|
|
func localCopy(src, target string) error {
|
|
return errors.New("no local copy implementation for linux")
|
|
}
|