2021-05-05 14:13:39 +02:00
|
|
|
from .manager import PluginManager
|
2021-12-01 18:37:57 +01:00
|
|
|
from .builtin import BasicAuthPlugin, DigestAuthPlugin, BearerAuthPlugin
|
2021-05-05 14:13:39 +02:00
|
|
|
from ..output.formatters.headers import HeadersFormatter
|
|
|
|
from ..output.formatters.json import JSONFormatter
|
2021-08-31 22:49:53 +02:00
|
|
|
from ..output.formatters.xml import XMLFormatter
|
2021-05-05 14:13:39 +02:00
|
|
|
from ..output.formatters.colors import ColorFormatter
|
2020-05-26 10:07:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
plugin_manager = PluginManager()
|
|
|
|
|
|
|
|
|
|
|
|
# Register all built-in plugins.
|
|
|
|
plugin_manager.register(
|
|
|
|
BasicAuthPlugin,
|
|
|
|
DigestAuthPlugin,
|
2021-12-01 18:37:57 +01:00
|
|
|
BearerAuthPlugin,
|
2020-05-26 10:07:34 +02:00
|
|
|
HeadersFormatter,
|
|
|
|
JSONFormatter,
|
2021-08-31 22:49:53 +02:00
|
|
|
XMLFormatter,
|
2020-05-26 10:07:34 +02:00
|
|
|
ColorFormatter,
|
|
|
|
)
|