Source code for afe.driver.cli.cli

#! /usr/bin/env python3
#########################################################
# Copyright (C) 2022 SiMa Technologies, Inc.
#
# This material is SiMa proprietary and confidential.
#
# This material may not be copied or distributed without
# the express prior written permission of SiMa.
#
# All rights reserved.
#########################################################
# Code owner: Nenad Nikolic
#########################################################
"""
This is the command line entry point.  It should be invoked as the main program.
"""

from afe.driver.cli.parser import parse_arguments

if __name__ == "__main__":
[docs] args = parse_arguments()
args.func(args)