comparison sat_frontends/jp/constants.py @ 3555:53fec6309fa3

cli: update constants to use new name
author Goffi <goffi@goffi.org>
date Wed, 09 Jun 2021 17:29:29 +0200
parents be6d91572633
children 1709f0a78f50 f4c02bdb2d91
comparison
equal deleted inserted replaced
3554:184c66256bbc 3555:53fec6309fa3
21 from sat.tools.common.ansi import ANSI as A 21 from sat.tools.common.ansi import ANSI as A
22 22
23 23
24 class Const(constants.Const): 24 class Const(constants.Const):
25 25
26 APP_NAME = "jp" 26 APP_NAME = "Libervia CLI"
27 APP_COMPONENT = "CLI"
28 APP_NAME_ALT = "jp"
29 APP_NAME_FILE = "libervia_cli"
30 CONFIG_SECTION = APP_COMPONENT.lower()
27 PLUGIN_CMD = "commands" 31 PLUGIN_CMD = "commands"
28 PLUGIN_OUTPUT = "outputs" 32 PLUGIN_OUTPUT = "outputs"
29 OUTPUT_TEXT = "text" # blob of unicode text 33 OUTPUT_TEXT = "text" # blob of unicode text
30 OUTPUT_DICT = "dict" # simple key/value dictionary 34 OUTPUT_DICT = "dict" # simple key/value dictionary
31 OUTPUT_LIST = "list" 35 OUTPUT_LIST = "list"