A webring++ server implementation for actix-web.
``` use webringplusplusserveractix::webringplusplus_service;
async fn main() -> Result<()> { HttpServer::new(|| { App::new().service(webringplusplusservice(vec![ Cow::from("askjeeves.com"), Cow::from("altavista.com"), ])) }) .bind("0.0.0.0:8080")? .run() .await } ```