urlshortener-rs Build Status

A very-very simple urlshortener for Rust. Currently it uses is.gd service. It will be developed soon to use more services.

Usage

``` extern crate urlshortener;

use urlshortener::getshorturl;

fn main() { println!("Short url for google: {:?}", getshorturl("http://google.com")); } ```