mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-06 23:55:06 +00:00
13 lines
183 B
Python
13 lines
183 B
Python
|
from yt_dlp.extractor.common import InfoExtractor
|
||
|
|
||
|
|
||
|
class IgnoreNotInAllPluginIE(InfoExtractor):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class InAllPluginIE(InfoExtractor):
|
||
|
pass
|
||
|
|
||
|
|
||
|
__all__ = ['InAllPluginIE']
|