Currently, vetiver has this line in its top level __init__.py:
This means that if someone uses a star import, nothing will be imported:
# nothing gets imported
from vetiver import *
I wonder if we should change the __all__ to either specify all top-level imported functions and classes, or remove __all__?