11 lines
250 B
Go
11 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)
|
||
|
}
|