WebHook broker that accepts notifications from multiple platforms and performs simple actions in response
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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