mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
This PR moves the `vfs.py` module, which is only used by plugins, to avoid polluting the main beets namespace. Also exposes the `vfs` and `art` module from beets with a deprecation warning.
3 lines
49 B
Python
3 lines
49 B
Python
from . import art, vfs
|
|
|
|
__all__ = ["art", "vfs"]
|