tray_nonwindows.go 232 B

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