Credit Card

Credit Card is a library for adding credit cards to any project.

```rust,norun use crate::credit_card::CreditCard;

let mut cc = CreditCard { number: "4111111111111111".tostring(), cardholdername: "Graydon Hoare".tostring(), expirationmonth: "01".tostring(), expirationyear: "2023".tostring(), brand: None, securitycode: None }; cc.apply_brand(); ```

Current Features

Future Features

Notice:

This is under development right now, so interfaces and apis will be changing. If you are interested in using this please create an issue or reach out with your feature request so I can help add it.