Add a new watch. Args: url: URL to watch **kwargs: Additional watch parameters Returns: UUID of the created watch
(self, url, **kwargs)
| 37 | |
| 38 | @abstractmethod |
| 39 | def add_watch(self, url, **kwargs): |
| 40 | """ |
| 41 | Add a new watch. |
| 42 | |
| 43 | Args: |
| 44 | url: URL to watch |
| 45 | **kwargs: Additional watch parameters |
| 46 | |
| 47 | Returns: |
| 48 | UUID of the created watch |
| 49 | """ |
| 50 | pass |
| 51 | |
| 52 | @abstractmethod |
| 53 | def update_watch(self, uuid, update_obj): |
no outgoing calls