ollama/app/main.go
2024-02-15 12:05:13 -08:00

12 lines
214 B
Go

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