# Functions
NewDriversLicense creates a DriversLicense from a string.
# Variables
DriversLicenses contains all the EU drivers licenses List obtained from https://en.wikipedia.org/wiki/European_driving_licence.
ErrInvalidDriversLicense is returned when a drivers license is invalid.
ErrInvalidPhoneNumber is the error returned if the input phone is incorrect.
# Structs
PhoneNumber represens a phone number.
# Type aliases
DriversLicense contains a European drivers license
Why a 4 byte array? - Fixed byte arrays are much faster than strings - The drivers license code is never longer than 4 bytes.
RFC3339Nano is a time.Time that json (Un)Marshals from & to RFC3339 nano.