//go:build !windows && !cgo package clipboard import "context" func initialize() error { return errNoCgo } func read(t format) (buf []byte, err error) { panic("clipboard: cannot use when CGO_ENABLED=0") } func readc(t string) ([]byte, error) { panic("clipboard: cannot use when CGO_ENABLED=0") } func write(t format, buf []byte) (<-chan struct{}, error) { panic("clipboard: cannot use when CGO_ENABLED=0") } func watch(ctx context.Context, t format) <-chan []byte { panic("clipboard: cannot use when CGO_ENABLED=0") }