15 lines
265 B
Go
15 lines
265 B
Go
|
//go:build !windows && !darwin
|
||
|
|
||
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/jmorganca/ollama/api"
|
||
|
)
|
||
|
|
||
|
func startApp(ctx context.Context, client *api.Client) error {
|
||
|
return fmt.Errorf("could not connect to ollama server, run 'ollama serve' to start it")
|
||
|
}
|