mirror of
https://github.com/httpie/cli.git
synced 2024-11-22 15:53:13 +01:00
a3a08a9a22
* Use relative imports in test * Use relative imports * Add myself to contributors :)
19 lines
453 B
Python
19 lines
453 B
Python
from .manager import PluginManager
|
|
from .builtin import BasicAuthPlugin, DigestAuthPlugin
|
|
from ..output.formatters.headers import HeadersFormatter
|
|
from ..output.formatters.json import JSONFormatter
|
|
from ..output.formatters.colors import ColorFormatter
|
|
|
|
|
|
plugin_manager = PluginManager()
|
|
|
|
|
|
# Register all built-in plugins.
|
|
plugin_manager.register(
|
|
BasicAuthPlugin,
|
|
DigestAuthPlugin,
|
|
HeadersFormatter,
|
|
JSONFormatter,
|
|
ColorFormatter,
|
|
)
|