2023-12-27 00:03:45 +00:00
|
|
|
package tray
|
|
|
|
|
|
|
|
import (
|
2024-03-26 20:04:17 +00:00
|
|
|
"github.com/ollama/ollama/app/tray/commontray"
|
|
|
|
"github.com/ollama/ollama/app/tray/wintray"
|
2023-12-27 00:03:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func InitPlatformTray(icon, updateIcon []byte) (commontray.OllamaTray, error) {
|
|
|
|
return wintray.InitTray(icon, updateIcon)
|
|
|
|
}
|