| 12345678910111213141516 |
- from .search import search
- from .site import choose_site
- from .directory import directory
- from .help import help
- from .last import last
- from .quality import quality
- from .settings import settings
- from .spotify import spotify
- commands = [
- ('help', help, 'Display this list'),
- ('last', last, 'See the last search'),
- ('search', search, 'Search the selected site'),
- ('settings', settings, 'View/change settings'),
- ('spotify', spotify, 'Find music from your spotify profile')
- ]
|