mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 00:44:45 +01:00
a61f9e1114
- Remove default arguments to `open()`. - Make use of `pytest` mechanisms for temporary folders.
12 lines
299 B
Python
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')
|