1
0

feat: make sniffing async

This commit is contained in:
2026-06-01 23:20:29 +08:00
parent 48b69b7775
commit 3aacb2c32d
4 changed files with 24 additions and 12 deletions
+4 -1
View File
@@ -1,7 +1,8 @@
import logging
from signal import pause
from sqlalchemy import create_engine
from sqlalchemy.orm import Session
from star_resonance_tracer.proto.enum_chit_chat_channel_type_pb2 import ChitChatChannelType
from inventory_wars.game import Game
@@ -14,3 +15,5 @@ Base.metadata.create_all(engine)
game = Game(Session(engine), item_id=1040202, listening_channels=[ChitChatChannelType.ChannelTeam])
game.start()
pause()