A simple implementation of a URL generation module. Allows for qr-code generation using the qrcode
library.
Basic Example:
mod link_rs::LinkGenerator
fn main() {
let mut link_gen = LinkGenerator::new("/some/redirect", 10);
let link = link_gen::generate_url()
println!("{:?}", link) // Link { key: "vq5ejng0p6", url: "/some/redirect/vq5ejng0p6" }
}
To see a complete implementation of a url shortening service, please take a look at the actix-web
example.
link_rs = { version = "0.1.2", features = ["qrcode"] }
cargo test