macro_rules! found {
($url:expr) => { ... };
($url:expr, [ $( ($key:expr, $value:expr) ),* $(,)? ]) => { ... };
}Expand description
Produces HTTP 302 FOUND response
ยงExample
use volga::found;
let url = "https://www.rust-lang.org/";
found!(url);