mirror of
https://github.com/tcsenpai/ollama.git
synced 2025-06-06 03:05:22 +00:00

This focuses on Windows first, but coudl be used for Mac and possibly linux in the future.
10 lines
131 B
Go
10 lines
131 B
Go
//go:build !windows
|
|
|
|
package lifecycle
|
|
|
|
import "fmt"
|
|
|
|
func GetStarted() error {
|
|
return fmt.Errorf("GetStarted not implemented")
|
|
}
|