slippy-cli 0.1.0

AI Linter for Rust projects
struct Product {
    r#type: ProductType,
}

enum ProductType {
    Book {
        author: String,
        title: String,
        year: u64,
    },
    Magazine {
        title: String,
        year: u64,
    },
    Newspaper {
        title: String,
        year: u64,
    },
    Apple {
        color: AppleColor,
    },
}

enum AppleColor {
    Red,
    Green,
    Yellow,
}