github.com/driusan/dgit@v0.0.0-20221118233547-f39f0c15edbb/git/ssh_other.go (about)

     1  //go:build !plan9 && !dragonfly && !openbsd && !darwin && !freebsd && !netbsd && !solaris && !linux
     2  // +build !plan9,!dragonfly,!openbsd,!darwin,!freebsd,!netbsd,!solaris,!linux
     3  
     4  package git
     5  
     6  import (
     7  	"golang.org/x/crypto/ssh"
     8  )
     9  
    10  func getSigners() ([]ssh.Signer, error) {
    11  	// By default, assume no keys
    12  	return nil, nil
    13  }