diff options
author | Kyomotoi <[email protected]> | 2020-04-28 00:30:40 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2020-04-28 00:30:40 +0800 |
commit | b33aba098aae9feafd77b56746b4ff5946c843cf (patch) | |
tree | 3bab5ebd949c0fc201711de3528555fc54bb5a52 /config.py | |
download | ATRI-b33aba098aae9feafd77b56746b4ff5946c843cf.tar.gz ATRI-b33aba098aae9feafd77b56746b4ff5946c843cf.tar.bz2 ATRI-b33aba098aae9feafd77b56746b4ff5946c843cf.zip |
Initial commit
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config.py b/config.py new file mode 100644 index 0000000..4dd7d5f --- /dev/null +++ b/config.py @@ -0,0 +1,14 @@ +from nonebot.default_config import * + +#配置监听的 IP 和端口 +HOST = '127.0.0.1' +PORT = 8080 + +#设置超级用户 +SUPERUSERS = {2791352599} + +#机器人赋名,替代@ +NICKNAME = {'喵内', 'rbq', ''} + +#自定义命令开头 +COMMAND_START = {'', '/', '!', '/', '!'}
\ No newline at end of file |