2018-10-21 16:56:13 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import absolute_import, division, unicode_literals
|
|
|
|
|
2018-10-23 13:54:09 +02:00
|
|
|
from .common import PlexDBBase, initialize, wipe
|
|
|
|
from .tvshows import TVShows
|
|
|
|
from .movies import Movies
|
2018-10-24 15:20:25 +02:00
|
|
|
from .music import Music
|
2018-10-24 17:17:02 +02:00
|
|
|
from .playlists import Playlists
|
2018-10-25 16:07:34 +02:00
|
|
|
from .sections import Sections
|
2018-10-21 16:56:13 +02:00
|
|
|
|
|
|
|
|
2018-10-25 16:07:34 +02:00
|
|
|
class PlexDB(PlexDBBase, TVShows, Movies, Music, Playlists, Sections):
|
2018-10-23 13:54:09 +02:00
|
|
|
pass
|