github.com/gop9/olt@v0.0.0-20200202132135-d956aad50b08/framework/clipboard/clipboard_other.go (about)

     1  // +build !windows,!linux,!darwin,!freebsd android
     2  
     3  package clipboard
     4  
     5  func Start() {
     6  }
     7  
     8  func Get() string {
     9  	return ""
    10  }
    11  
    12  func GetPrimary() string {
    13  	return ""
    14  }
    15  
    16  func Set(text string) {
    17  }