Initial commit

This commit is contained in:
Richard Chien
2016-12-02 22:24:19 +08:00
commit 3f50b7d3f7
14 changed files with 875 additions and 0 deletions

6
config.py Normal file
View File

@ -0,0 +1,6 @@
config = {
'fallback_command': 'core.chat',
'command_start_flags': ('/', ''),
'command_name_separators': ('\.', '->', '::', '/'), # Regex
'command_args_start_flags': ('', '', ', ', ': '), # Regex
}