main.go 211 B

12345678910111213
  1. package main
  2. // Compile with the following to get rid of the cmd pop up on windows
  3. // go build -ldflags="-H windowsgui" .
  4. import (
  5. "github.com/ollama/ollama/app/lifecycle"
  6. )
  7. func main() {
  8. lifecycle.Run()
  9. }