WebHook broker that accepts notifications from multiple platforms and performs simple actions in response
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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