iptables_exporter 0.1.0

A Prometheus exporter for iptables
use thiserror::Error;

#[derive(Debug, Error)]
pub(crate) enum IptablesError {
    #[error("Invalid policy {0}. Choices are ACCEPT or DROP")]
    InvalidPolicy(String),
}