Documentation ¶ Overview ¶ Package urlparser provides interfaces and implementations for parsing information from a URL. Index ¶ type Parser func New() Parser Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Parser ¶ type Parser interface { // ParseDigest parses the digest from the given URL. // If none found, implementations should return an error. ParseDigest(url string) (digest.Digest, error) } Parser describes an interface for parsing information from a URL. func New ¶ func New() Parser New returns a new Parser. Source Files ¶ View all Source files azure.go parser.go Click to show internal directories. Click to hide internal directories.