forked from gmp/clip
1
0
Fork 0
This commit is contained in:
Greg 2019-10-01 09:41:25 -04:00
parent 2fb196dd6a
commit 670ceec56a
1 changed files with 3 additions and 0 deletions

View File

@ -9,10 +9,13 @@ go get git.wow.st/gmp/clip
## API:
```go
// Clear clears the general pasteboard
func Clear()
// Set puts a string on the pasteboard, returning true if successful
func Set(string) bool
// Get retrieves the string currently on the pasteboard.
func Get() string
```