Files
nonebot-plugin-tetris-stats/nonebot_plugin_tetris_stats/__init__.py
scdhh f1291a9923 修复所有type hint(当时写的时候mypy炸了
使用神秘新架构
独立request模块
版本推进
fixed #1 [BUG] 茶服无法查询用户名内带有大写字母的用户
2022-07-24 17:24:37 +08:00

14 lines
180 B
Python

from nonebot import get_driver
from .Utils.SQL import initDB
from . import GameDataProcessor
driver = get_driver()
@driver.on_startup
async def startUP():
await initDB()