mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-01-01 06:21:09 +01: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']
|