emmental/curds/__init__.py

14 lines
331 B
Python

# Copyright 2019 (c) Anna Schumaker.
from . import data
from . import notify
from . import playlist
from . import tags
from . import threadqueue
Album = tags.Album
DataFile = data.DataFile
Notify = notify.Notify
Playlist = playlist.playlist.Playlist
ThreadQueue = threadqueue.ThreadQueue
Track = tags.Track