httpie-cli/httpie/plugins/__init__.py
Mickaël Schoentgen a61f9e1114
Minor clean-up (#1078)
- Remove default arguments to `open()`.
- Make use of `pytest` mechanisms for temporary folders.
2021-05-29 12:06:06 +02:00

12 lines
299 B
Python

"""
WARNING: The plugin API is still work in progress and will
probably be completely reworked in the future.
"""
from .base import (
AuthPlugin, FormatterPlugin,
ConverterPlugin, TransportPlugin
)
__all__ = ('AuthPlugin', 'ConverterPlugin', 'FormatterPlugin', 'TransportPlugin')