start_default.go 262 Bytes
Newer Older
mashun1's avatar
v1  
mashun1 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//go:build !windows && !darwin

package cmd

import (
	"context"
	"fmt"

	"github.com/ollama/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")
}