ollama/app/main.go
2024-04-27 14:20:10 -04:00

17 lines
287 B
Go

package main
// Compile with the following to get rid of the cmd pop up on windows
// go build -ldflags="-H windowsgui" .
var (
AppName string
CLIName string
AppDir string
AppDataDir string
AppLogFile string
ServerLogFile string
)
func main() {
run()
}