Compare commits

...

2 Commits

Author SHA1 Message Date
67fbe1b658 routine: Update data sub pointer. 2025-09-01 20:17:03 +10:00
8c868ca4f7 Update Bot class name. 2025-09-01 20:16:13 +10:00
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import websockets
from twitchio.web import AiohttpAdapter from twitchio.web import AiohttpAdapter
from meta import CrocBot, conf, setup_main_logger, args from meta import Bot, conf, setup_main_logger, args
from data import Database from data import Database
from modules import twitch_setup from modules import twitch_setup
@@ -23,7 +23,7 @@ async def main():
eventsub_secret=conf.bot.get('eventsub_secret', None) eventsub_secret=conf.bot.get('eventsub_secret', None)
) )
bot = CrocBot( bot = Bot(
config=conf, config=conf,
dbconn=db, dbconn=db,
adapter=adapter, adapter=adapter,