Function vinted_rs::queries::random_host

source ·
pub fn random_host<'a>() -> &'a str
Expand description

Returns a random Vinted host domain.

The random_host function selects a random Vinted host domain from a predefined list of domains.

§Returns

A string reference containing the randomly selected Vinted host domain.

§Examples

use vinted_rs::queries::random_host;
let host = random_host();
println!("Random host: {}", host);