httpie-cli/httpie/plugins/__init__.py

12 lines
299 B
Python
Raw Normal View History

"""
WARNING: The plugin API is still work in progress and will
2019-08-31 18:33:54 +02:00
probably be completely reworked in the future.
"""
from .base import (
AuthPlugin, FormatterPlugin,
ConverterPlugin, TransportPlugin
)
__all__ = ('AuthPlugin', 'ConverterPlugin', 'FormatterPlugin', 'TransportPlugin')