mirror of
https://github.com/m1k1o/neko.git
synced 2025-06-15 17:22:44 +02:00
11 lines
231 B
Go
11 lines
231 B
Go
package remote
|
|
|
|
import "m1k1o/neko/internal/remote/clipboard"
|
|
|
|
func (manager *RemoteManager) ReadClipboard() string {
|
|
return clipboard.Read()
|
|
}
|
|
|
|
func (manager *RemoteManager) WriteClipboard(data string) {
|
|
clipboard.Write(data)
|
|
}
|