gopass/internal/notify/notify_others.go
Dominik Schulz 71861e4a8b
chore: Update golangci-lint (#3287)
Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
2025-11-12 21:09:26 +01:00

15 lines
272 B
Go

//go:build !linux && !windows && !darwin
package notify
import (
"context"
"fmt"
"runtime"
)
// Notify is not yet implemented on this platform
func Notify(ctx context.Context, subj, msg string) error {
return fmt.Errorf("GOOS %s not yet supported", runtime.GOOS)
}