#!/usr/bin/env python

from __future__ import print_function

import sys

from net_health.net_connectivity import main


try:
  main()
except Exception as e:
  print("ERROR: ", e, file=sys.stderr)

