14 lines
235 B
Go
14 lines
235 B
Go
|
//go:build !windows
|
||
|
|
||
|
package tray
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/jmorganca/ollama/app/tray/commontray"
|
||
|
)
|
||
|
|
||
|
func InitPlatformTray(icon, updateIcon []byte) (commontray.OllamaTray, error) {
|
||
|
return nil, fmt.Errorf("NOT IMPLEMENTED YET")
|
||
|
}
|