mirror of
https://github.com/ollama/ollama.git
synced 2025-05-10 18:06:33 +02:00
9 lines
123 B
Go
9 lines
123 B
Go
//go:build !windows
|
|
|
|
package lifecycle
|
|
|
|
import "errors"
|
|
|
|
func GetStarted() error {
|
|
return errors.New("not implemented")
|
|
}
|