29e90cc13b
This focuses on Windows first, but coudl be used for Mac and possibly linux in the future.
14 lines
265 B
Go
14 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")
|
|
}
|