nonebot2/demo/__init__.py
2018-12-27 20:23:45 +08:00

23 lines
557 B
Python

from os import path
import nonebot
from demo import config
nonebot.init(config)
@nonebot.scheduler.scheduled_job('interval', seconds=20)
async def cb():
bot_ = nonebot.get_bot()
try:
await bot_.send_private_msg(user_id=1002647525, message='')
except Exception as e:
nonebot.logger.exception(e)
if __name__ == '__main__':
nonebot.load_builtin_plugins()
nonebot.load_plugins(path.join(path.dirname(__file__), 'plugins'),
'demo.plugins')
nonebot.run(host=config.HOST, port=config.PORT)