use crate::actor::Actor;
pub static URL_PREFIX_TO_ACTOR: [(&str, Actor); 2] = [
(
"https://www.google.com/search?q=",
Actor {
id: "apify~google-search-scraper",
brand: "Apify",
product: "Google Search Results Scraper",
},
),
(
"https://x.com/", Actor {
id: "C2Wk3I6xAqC4Xi63f",
brand: "Kaito Easy API",
product: "Twitter (X) Follower Scraper",
},
),
];