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.

12345678910
  1. class Service:
  2. factories = []
  3. def accept_hook(self, identifier, request):
  4. pass
  5. @classmethod
  6. def add_factory(cls, factory):
  7. cls.factories.append(factory)