mirror of
https://github.com/ollama/ollama.git
synced 2026-04-18 01:54:17 +02:00
8 lines
136 B
Go
8 lines
136 B
Go
package cmd
|
|
|
|
import "errors"
|
|
|
|
func localCopy(src, target string) error {
|
|
return errors.New("no local copy implementation for linux")
|
|
}
|