29e90cc13b
This focuses on Windows first, but coudl be used for Mac and possibly linux in the future.
10 lines
250 B
Go
10 lines
250 B
Go
package tray
|
|
|
|
import (
|
|
"github.com/jmorganca/ollama/app/tray/commontray"
|
|
"github.com/jmorganca/ollama/app/tray/wintray"
|
|
)
|
|
|
|
func InitPlatformTray(icon, updateIcon []byte) (commontray.OllamaTray, error) {
|
|
return wintray.InitTray(icon, updateIcon)
|
|
}
|