13 lines
231 B
Go
13 lines
231 B
Go
//go:build !windows
|
|
|
|
package tray
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/ollama/ollama/app/tray/commontray"
|
|
)
|
|
|
|
func InitPlatformTray(icon, updateIcon []byte) (commontray.OllamaTray, error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|