ollama/main.go

13 lines
179 B
Go
Raw Normal View History

package main
import (
"context"
"github.com/ollama/ollama/cmd"
2023-08-14 18:15:53 +00:00
"github.com/spf13/cobra"
)
func main() {
2023-08-14 18:15:53 +00:00
cobra.CheckErr(cmd.NewCLI().ExecuteContext(context.Background()))
}