summaryrefslogtreecommitdiff
path: root/misc/mon_ami/mon_ami
diff options
context:
space:
mode:
Diffstat (limited to 'misc/mon_ami/mon_ami')
-rwxr-xr-xmisc/mon_ami/mon_ami10
1 files changed, 10 insertions, 0 deletions
diff --git a/misc/mon_ami/mon_ami b/misc/mon_ami/mon_ami
new file mode 100755
index 0000000..a212cfe
--- /dev/null
+++ b/misc/mon_ami/mon_ami
@@ -0,0 +1,10 @@
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
+# MonAMI Asterisk Manger Interface Server
+# (c) AMOOMA GmbH 2012
+from mon_ami_main import main
+from sys import exit
+
+if (__name__ == "__main__"):
+ result = main()
+ exit(result)