class GmailWatcher: def __init__(self, poll_seconds: int = 30) -> None: self.poll_seconds = poll_seconds def status(self) -> dict: return {"running": True, "poll_seconds": self.poll_seconds}