1
0
mirror of https://github.com/httpie/cli.git synced 2026-04-26 20:02:11 +02:00
Files
httpie-cli/httpie/plugins/__init__.py
T

12 lines
299 B
Python
Raw Normal View History

2015-02-05 15:25:00 +01:00
"""
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.
2015-02-05 15:25:00 +01:00
"""
2021-05-05 14:13:39 +02:00
from .base import (
2015-02-05 15:25:00 +01:00
AuthPlugin, FormatterPlugin,
ConverterPlugin, TransportPlugin
)
2021-05-29 12:06:06 +02:00
__all__ = ('AuthPlugin', 'ConverterPlugin', 'FormatterPlugin', 'TransportPlugin')