feat: add bot class

This commit is contained in:
2025-10-24 20:43:41 +02:00
parent ae02ddefb0
commit b60a0aba4f
3 changed files with 66 additions and 0 deletions

16
src/bot.py Normal file
View File

@@ -0,0 +1,16 @@
from __future__ import annotations
from typing import TYPE_CHECKING
from src.snapshot import Snapshot
if TYPE_CHECKING:
from src.recorder import RecorderWindow
class Bot:
def __init__(self, recorder: RecorderWindow):
self.recorder: RecorderWindow = recorder
def on_snapshot_received(self, snapshot: Snapshot):
pass