1pub mod alpine; 2pub mod archlinux; 3pub mod debian; 4 5#[derive(Debug, PartialEq)] 6pub struct Pkg { 7 pub name: String, 8 pub version: String, 9}