ext-respondd.py 289 B

123456789101112131415161718
  1. #!/usr/bin/env python3
  2. import json
  3. from lib.respondd_client import ResponddClient
  4. config = {}
  5. try:
  6. with open("config.json", 'r') as cfg_handle:
  7. config = json.load(cfg_handle)
  8. except IOError:
  9. raise
  10. extResponddClient = ResponddClient(config)
  11. extResponddClient.start()