2023-12-27 00:03:45 +00:00
|
|
|
//go:build !windows
|
|
|
|
|
|
|
|
package tray
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2024-03-26 20:04:17 +00:00
|
|
|
"github.com/ollama/ollama/app/tray/commontray"
|
2023-12-27 00:03:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func InitPlatformTray(icon, updateIcon []byte) (commontray.OllamaTray, error) {
|
|
|
|
return nil, fmt.Errorf("NOT IMPLEMENTED YET")
|
|
|
|
}
|