github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/libkb/osv_fallback.go (about)

     1  //go:build !darwin && !windows && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris
     2  // +build !darwin,!windows,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
     3  
     4  package libkb
     5  
     6  import "fmt"
     7  
     8  func OSVersionAndBuild() (string, string, error) {
     9  	return fmt.Errorf("Could not get OS info on this system")
    10  }