flow-pilot / backend /watcher /gmail_watcher.py
DevelopedBy-Siva
setup the initial app and deploy
83fe4f9
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}