Spaces:
Sleeping
Sleeping
File size: 216 Bytes
83fe4f9 | 1 2 3 4 5 6 7 | 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}
|