Refactoring: Moved check parameters from unsorted.py to dedicated modules (CMK-1393)
[check_mk.git] / notifications / slack
blob1e5ea40e0b1647fc6875a103e71f510155587cc1
1 #!/usr/bin/env python
2 # Slack
3 from cmk.notification_plugins.slack import slack_msg
4 from cmk.notification_plugins.utils import post_request
6 if __name__ == "__main__":
7 post_request(slack_msg)