Significant changes:
* Made some changes to how filehandlers are handled to make them more customizable to theoretically allow a user to run varvault towards a database.
* This has caused some APIs to have to change since they didn't make any sense anymore, hence the new major version.
* Moved validators to a separate new file validators.py since it didn't make much sense to have it in keyrings.py.
* Scrapped the VaultInterface class. It makes no sense and we don't need it for a user to overload the class, which was its original intent.
* Removed some functions under utils.py as they don't make sense to have there anymore.
* Scrapped the constants in class VaultFlags (vaultflags.py) and instead we just use the name of the function as the constant that names the actual flag.
* Made it so 'build_from_vault_key' in class VaultStructBase (vaultstructs.py) raises NotImplementedError if the function isn't implemented. Python handles abstract classes weirdly when the abstract class also inherits a bultin type (dict, list, float, etc) and allows you to create an instance of a class that doesn't implement all abstract methods, which causes some weird bugs.
* The JsonFileHandler class has been moved to __init__.py instead of filehandlers.py.