mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-11 01:07:36 +08:00
8 lines
163 B
Python
8 lines
163 B
Python
from plex.interfaces.core.base import Interface
|
|
|
|
|
|
class ChannelInterface(Interface):
|
|
path = 'channels'
|
|
|
|
def all(self):
|
|
raise NotImplementedError()
|