12 lines
211 B
Go
12 lines
211 B
Go
package tray
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/ollama/ollama/app/tray/commontray"
|
|
)
|
|
|
|
func InitPlatformTray(icon, updateIcon []byte) (commontray.OllamaTray, error) {
|
|
return nil, fmt.Errorf("NOT IMPLEMENTED YET")
|
|
}
|