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