...

Source file src/github.com/NCR-Corporation/ncr-bsp-hmac/go/sign/signer.go

Documentation: github.com/NCR-Corporation/ncr-bsp-hmac/go/sign

     1  package sign
     2  
     3  import "net/http"
     4  
     5  type HTTPSigner interface {
     6  	Sign(req *http.Request) (*http.Request, error)
     7  }
     8  

View as plain text