ollama/app/main.go
2024-04-20 20:04:00 -07:00

13 lines
197 B
Go

package main
// Compile with the following to get rid of the cmd pop up on windows
// go build -ldflags="-H windowsgui" .
import (
"ollama.com/app/lifecycle"
)
func main() {
lifecycle.Run()
}