WebHook broker that accepts notifications from multiple platforms and performs simple actions in response
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

service.py 169B

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