__init__.py 430 B

123456789101112131415
  1. """
  2. This file will submit an alert to either a mailbox given a set of parameters, this will perform as following :
  3. - as-a-service
  4. - embedded
  5. """
  6. check = None
  7. def post(**args):
  8. """
  9. This function will submit a report to a given target provided some input
  10. :key will perform as-a-service
  11. :data data that will be submitted to smtp/queue server
  12. :smtp will send the file to a mailbox
  13. """
  14. pass