interface IUrlShortener {
    shortenUrl(longUrl: string): Promise<UrlShortenerResponse>;
}

Implemented by

Methods

Methods