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