mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 17:15:05 +08:00
10 lines
203 B
Python
10 lines
203 B
Python
|
import re
|
|||
|
|
|||
|
from none.default_config import *
|
|||
|
|
|||
|
SECRET = 'abc'
|
|||
|
|
|||
|
SUPERUSERS = {1002647525}
|
|||
|
COMMAND_START = {'', '/', '!', '/', '!', re.compile(r'^>+\s*')}
|
|||
|
COMMAND_SEP = {'/', '.', re.compile(r'#|::?')}
|