You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
430 B
Python
15 lines
430 B
Python
4 years ago
|
"""
|
||
|
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
|