#!python
# Copyright (C) 2023-2024 SIPez LLC.  All rights reserved.
import sys
import asyncio

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

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

