123456789101112131415 |
- """
- This file will submit an alert to either a mailbox given a set of parameters, this will perform as following :
- - as-a-service
- - embedded
- """
- check = None
- def post(**args):
- """
- This function will submit a report to a given target provided some input
- :key will perform as-a-service
- :data data that will be submitted to smtp/queue server
- :smtp will send the file to a mailbox
- """
- pass
|