adding completed prototype for slack bot

This commit is contained in:
2019-10-04 22:24:53 +01:00
parent 9f28a9ddce
commit e154f6db75
7 changed files with 139 additions and 50 deletions

View File

@@ -0,0 +1,14 @@
import splunklib.searchcommands as searchcommands
import sys
class dashboardScreenshot(searchcommands.GeneratingCommand):
"""docstring for dashboardScreenshot"""
def __init__(self):
print('init')
super(dashboardScreenshot, self).__init__()
if __name__ == '__main__':
var = dashboardScreenshot()
print(sys.argv)