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

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