mirror of
https://github.com/likelovewant/ollama-for-amd.git
synced 2025-12-21 14:26:30 +00:00
14 lines
231 B
Go
14 lines
231 B
Go
//go:build !windows
|
|
|
|
package tray
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/ollama/ollama/app/tray/commontray"
|
|
)
|
|
|
|
func InitPlatformTray(icon, updateIcon []byte) (commontray.OllamaTray, error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|