#!python

import sys

# moved vcon CLI implementation to vcon.cli module to allow unit testing with pytest
import vcon.cli

if(__name__ == '__main__'):
  sys.exit(vcon.cli.main())

