// +build windows
package clipboard
import "github.com/lxn/walk"
func get() (string, error) {
c := walk.Clipboard()
return c.Text()
}
func set(text string) error {
return c.SetText(text)