mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-04-08 09:53:43 +00:00
14 lines
216 B
Python
14 lines
216 B
Python
from yt_dlp.extractor.common import InfoExtractor
|
|
|
|
|
|
class IgnoreNotInAllPluginIE(InfoExtractor):
|
|
pass
|
|
|
|
|
|
class InAllPluginIE(InfoExtractor):
|
|
_VALID_URL = 'inallpluginie'
|
|
pass
|
|
|
|
|
|
__all__ = ['InAllPluginIE']
|