2023-07-03 19:22:44 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-07-13 18:02:53 +00:00
|
|
|
"context"
|
|
|
|
|
2024-03-26 20:04:17 +00:00
|
|
|
"github.com/ollama/ollama/cmd"
|
2023-08-14 18:15:53 +00:00
|
|
|
"github.com/spf13/cobra"
|
2023-07-03 19:22:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2023-08-14 18:15:53 +00:00
|
|
|
cobra.CheckErr(cmd.NewCLI().ExecuteContext(context.Background()))
|
2023-07-03 19:22:44 +00:00
|
|
|
}
|