mirror of
https://github.com/gopasspw/gopass.git
synced 2025-12-08 19:24:54 +00:00
15 lines
272 B
Go
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)
|
|
}
|