Source code for couchpotato.core.media.movie.providers.torrent.hdbits

from couchpotato.core.logger import CPLog
from couchpotato.core.media._base.providers.torrent.hdbits import Base
from couchpotato.core.media.movie.providers.base import MovieProvider

log = CPLog(__name__)

autoload = 'HDBits'


[docs]class HDBits(MovieProvider, Base): pass