mirror of
https://github.com/httpie/cli.git
synced 2024-11-22 15:53:13 +01:00
003f2095d4
* Hide pretty help * Automatic release update warnings. * `httpie cli check-updates` * adapt to the new loglevel construct * Don't make the pie-colors the bold * Apply review feedback. Co-authored-by: Jakub Roztocil <jakub@roztocil.co>
12 lines
384 B
Python
12 lines
384 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
|
|
from httpie.manager.tasks.check_updates import cli_check_updates
|
|
|
|
CLI_TASKS = {
|
|
'sessions': cli_sessions,
|
|
'export-args': cli_export_args,
|
|
'plugins': cli_plugins,
|
|
'check-updates': cli_check_updates
|
|
}
|