"hint" message type

This commit is contained in:
Nicholas Albion
2023-09-27 16:04:44 +10:00
parent b0fea79c7b
commit c84ad714d4
3 changed files with 12 additions and 8 deletions

View File

@@ -1,7 +1,8 @@
MESSAGE_TYPE = {
'verbose': 'verbose',
'stream': 'stream',
'user_input_request': 'user_input_request',
'info': 'info',
'user_input_request': 'user_input_request', # Displayed above the
'hint': 'hint', # Hint text, eg "Do you want to add anything else? If not, just press ENTER."
'info': 'info', # JSON data can be sent to progress `progress_stage`
'local': 'local',
}
}