package urlshortener type Shortener interface { Shorten(plainText string) (string, error) Unshorten(encryptedText string) (string, error) }