2023-12-27 08:03:45 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
// Compile with the following to get rid of the cmd pop up on windows
|
|
|
|
|
// go build -ldflags="-H windowsgui" .
|
|
|
|
|
|
|
|
|
|
import (
|
2024-03-27 04:04:17 +08:00
|
|
|
"github.com/ollama/ollama/app/lifecycle"
|
2023-12-27 08:03:45 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
lifecycle.Run()
|
|
|
|
|
}
|