mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-04-23 23:59:46 -04:00
9 lines
163 B
Python
9 lines
163 B
Python
from plex.interfaces.core.base import Interface
|
|
|
|
|
|
class ChannelInterface(Interface):
|
|
path = 'channels'
|
|
|
|
def all(self):
|
|
raise NotImplementedError()
|