master
clipboard.go
1//go:build !linux
2
3package senpai
4
5import (
6 "fmt"
7 "io"
8)
9
10func readClipboard() (io.ReadCloser, string, error) {
11 return nil, "", fmt.Errorf("clipboard access is not supported on this platform")
12}