tray_nonwindows.go 231 Bytes
Newer Older
mashun1's avatar
v1  
mashun1 committed
1
2
3
4
5
//go:build !windows

package tray

import (
xuxzh1's avatar
init  
xuxzh1 committed
6
	"errors"
mashun1's avatar
v1  
mashun1 committed
7
8
9
10
11

	"github.com/ollama/ollama/app/tray/commontray"
)

func InitPlatformTray(icon, updateIcon []byte) (commontray.OllamaTray, error) {
xuxzh1's avatar
init  
xuxzh1 committed
12
	return nil, errors.New("not implemented")
mashun1's avatar
v1  
mashun1 committed
13
}