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