Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

zeo-nagios 404B

123456789101112
  1. #!/Users/Esthi/thesis_ek/thesisenv/bin/python3
  2. # EASY-INSTALL-ENTRY-SCRIPT: 'ZEO==5.2.0','console_scripts','zeo-nagios'
  3. __requires__ = 'ZEO==5.2.0'
  4. import re
  5. import sys
  6. from pkg_resources import load_entry_point
  7. if __name__ == '__main__':
  8. sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
  9. sys.exit(
  10. load_entry_point('ZEO==5.2.0', 'console_scripts', 'zeo-nagios')()
  11. )