WebHook broker that accepts notifications from multiple platforms and performs simple actions in response
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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