mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-28 05:27:30 +08:00
9 lines
444 B
Python
9 lines
444 B
Python
config = {
|
||
'fallback_command': 'natural_language.process',
|
||
'fallback_command_after_nl_processors': 'ai.tuling123',
|
||
'command_start_flags': ('/', '/', '来,', '来,'), # Add '' (empty string) here to allow commands without start flags
|
||
'command_name_separators': ('->', '::', '/'), # Regex
|
||
'command_args_start_flags': (',', ':', ',', ', ', ':', ': '), # Regex
|
||
'command_args_separators': (',', ','), # Regex
|
||
}
|