16 lines
704 B
Python
16 lines
704 B
Python
"""
|
|
@brief This file transfers control of the command line argument parsing to the user.
|
|
@details Template configuration file. Copy this folder to the TMTC commander root and adapt
|
|
it to your needs.
|
|
"""
|
|
|
|
|
|
def parse_input_arguments_user(print_known_args: bool = False, print_unknown_args: bool = False):
|
|
"""
|
|
This function by default will build the default argument parser. A custom CLI parser can be
|
|
built in this function if required.
|
|
"""
|
|
from tmtc_core.utility.tmtcc_core_args_parser import parse_default_input_arguments
|
|
parse_default_input_arguments(print_known_args=print_known_args,
|
|
print_unknown_args=print_unknown_args)
|