#[derive(Debug, Clone)]
pub struct EventHeaders {
pub user_agent: String,
pub x_forwarded_for: String,
}
impl EventHeaders {
#[must_use]
pub const fn new(user_agent: String, x_forwarded_for: String) -> Self {
Self {
user_agent,
x_forwarded_for,
}
}
}