mirror of
https://github.com/ollama/ollama.git
synced 2025-05-11 18:36:41 +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")
|
|
}
|