13 lines
214 B
Go
13 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()
|
||
|
}
|