WebHook broker that accepts notifications from multiple platforms and performs simple actions in response
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

service.py 206B

123456789101112
  1. from flask import Request
  2. class Service:
  3. def __init__(self, type):
  4. self.type = type
  5. def refresh(self):
  6. pass
  7. def accept_hook(self, identifier, request: Request):
  8. pass