tray_darwin.go 211 B

1234567891011
  1. package tray
  2. import (
  3. "fmt"
  4. "github.com/ollama/ollama/app/tray/commontray"
  5. )
  6. func InitPlatformTray(icon, updateIcon []byte) (commontray.OllamaTray, error) {
  7. return nil, fmt.Errorf("NOT IMPLEMENTED YET")
  8. }