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