tray_nonwindows.go 232 Bytes
Newer Older
1
2
3
4
5
6
7
//go:build !windows

package tray

import (
	"fmt"

8
	"github.com/ollama/ollama/app/tray/commontray"
9
10
11
12
13
)

func InitPlatformTray(icon, updateIcon []byte) (commontray.OllamaTray, error) {
	return nil, fmt.Errorf("NOT IMPLEMENTED YET")
}