mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
14 lines
180 B
Python
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()
|