mirror of
https://github.com/ollama/ollama.git
synced 2025-05-16 22:44:25 +02:00
15 lines
205 B
Go
15 lines
205 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/ollama/ollama/runner"
|
|
)
|
|
|
|
func main() {
|
|
if err := runner.Execute(os.Args[1:]); err != nil {
|
|
fmt.Fprintf(os.Stderr, "error: %s\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|