/*
* This file is part of laurelin/shared
* Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
*
* Licensed under GPL-3.0-only.
* See LICENSE for licensing information.
*/
macro_rules! extract_cookie {
($resp:expr) => {{
let mut cookie = String::from("");
for c in $resp.cookies() {
if c.name() == "id" {
cookie = c.value().to_string();
}
}
cookie
}};
}
pub(super) use extract_cookie;