2c8cdd3ab1
Working but need to check out code
12 lines
323 B
Python
12 lines
323 B
Python
"""Tools module - filesystem and API tools."""
|
|
from .filesystem import set_path_for_folder, list_folder
|
|
from .api import find_media_imdb_id, find_torrent, add_torrent_to_qbittorrent
|
|
|
|
__all__ = [
|
|
'set_path_for_folder',
|
|
'list_folder',
|
|
'find_media_imdb_id',
|
|
'find_torrent',
|
|
'add_torrent_to_qbittorrent',
|
|
]
|