From 670ceec56a25c534eb0c99ddf9a3c02575bb8905 Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 1 Oct 2019 09:41:25 -0400 Subject: [PATCH] Docs --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index ad78426..73fcb51 100644 --- a/README.md +++ b/README.md @@ -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 ```