finances 0.0.0

Use Rust to Validate and Extract information from N.I.N.s.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 List of ISO country codes: https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes
 **/
pub enum Code {
    BE,
    CA,
    ES,
    FR,
    IT,
    LU,
    PT,
    US
}