mirror of
https://github.com/httpie/cli.git
synced 2025-02-14 16:49:27 +01:00
10 lines
280 B
Python
10 lines
280 B
Python
|
from httpie.manager.tasks.sessions import cli_sessions
|
||
|
from httpie.manager.tasks.export_args import cli_export_args
|
||
|
from httpie.manager.tasks.plugins import cli_plugins
|
||
|
|
||
|
CLI_TASKS = {
|
||
|
'sessions': cli_sessions,
|
||
|
'export-args': cli_export_args,
|
||
|
'plugins': cli_plugins,
|
||
|
}
|