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 132B

123456
  1. class Service:
  2. def __init__(self, type):
  3. self.type = type
  4. def accept_hook(self, identifier, request):
  5. pass