Signer imagor URL signature signer
| 9 | |
| 10 | // Signer imagor URL signature signer |
| 11 | type Signer interface { |
| 12 | Sign(path string) string |
| 13 | } |
| 14 | |
| 15 | // NewDefaultSigner default signer using SHA1 with secret |
| 16 | func NewDefaultSigner(secret string) Signer { |
no outgoing calls
no test coverage detected