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